This Python notebook describes the data collection process for roguelike universe. If you have not yet installed the requirements, you can do it by running:
pip install -r requirements.txt
We prepared a list of roguelike games from Wikipedia as a starting point. For indicators of out-of-genre influences, we sourced 10,000+ video game titles from Pastebin as uploaded by the user __.
First, we setup read/write functions that are friendly with international unicode characters, because the web may contain all kinds of character code points.
In [1]:
import os
import io
import json
import pandas as pd
def read_json(path):
data = ''
with io.open(path, 'r', encoding='utf-8') as f:
data = json.loads(f.read())
print(__message('Loaded {}'.format(path)))
return data
def save_json(path, data):
with io.open(path, 'w', encoding='utf-8') as f:
try:
output = json.dumps(data, indent=2, ensure_ascii=False)
f.write(output)
except UnicodeEncodeError:
f.write(output.encode('utf-8'))
print(__message('Written to {}'.format(path)))
def __success(text):
return ' (SUCC) {}'.format(text).encode('utf-8')
def __failure(text):
return '!!FAIL!! {}'.format(text).encode('utf-8')
def __warning(text):
return '??WARN?? {}'.format(text).encode('utf-8')
def __message(text):
return ' |MSG| {}'.format(text).encode('utf-8')
Here is a sample of the list of roguelike games from Wikipedia:
In [2]:
roguelikes = pd.read_csv(os.path.join(os.getcwd(), 'roguelikes.csv'), skip_blank_lines=True)
roguelikes.head()
Out[2]:
Name
RogueTemple
Link
Status
Released
Updated
Developer
Theme
Influences
0
100 Heroes: Shopkeeper of Doom
http://roguebasin.roguelikedevelopment.org/ind...
http://www.bay12forums.com/smf/index.php?topic...
alpha
2012/00/00
2012/10/25
Paul Wright
Economics/Trading
Recettear
1
100 Rogues
http://roguebasin.roguelikedevelopment.org/ind...
http://www.100rogues.com/
stable
2010/05/06
2010/05/06
Dinofarm Games
Fantasy
Rogue
2
1Quest
http://roguebasin.roguelikedevelopment.org/ind...
http://www.ratzngodz.fr/
stable
2014/02/20
2015/02/07
Ratz 'N' Godz
Fantasy
DCSS, Dominion4
3
3059
http://roguebasin.roguelikedevelopment.org/ind...
https://sites.google.com/site/free3069/3059---...
stable
2005/00/00
2005/06/11
Phr00t
Science Fiction, Alien Planets, Futuristic
nethack
4
3069
http://roguebasin.roguelikedevelopment.org/ind...
http://sites.google.com/site/free3069/
stable
2009/07/06
2009/10/06
Phr00t
Science Fiction, Alien Planets, Futuristic
3059
In addition, roguelike-like games:
In [3]:
roguelikelikes = pd.read_csv(os.path.join(os.getcwd(), 'roguelike-likes.csv'), skip_blank_lines=True)
roguelikelikes.head()
Out[3]:
Name
Released
Updated
Developer
Theme
Influences
0
ToeJam & Earl
1991
NaN
Johnson Voorsanger Productions
Fantasy
NaN
1
Diablo
1996
NaN
Blizzard North
Fantasy
NaN
2
Diablo II
2000
NaN
Blizzard Entertainment
Fantasy
NaN
3
Lost Labyrinth
2001
2011.0
Lost Labyrinth
Fantasy
NaN
4
Strange Adventures In Infinite Space
2002
2004.0
Rich Carlson, Iikka Keränen
Space science fiction
NaN
And a sample of the list of video games:
In [4]:
video_games = pd.read_json(os.path.join(os.getcwd(), 'games.json'))
video_games.head(10)
Out[4]:
title
year
0
$hop-n-$pree
2009
1
'43 - One Year After
1986
2
'89 Denno Kyusei Uranai
1988
3
'Nam 1965-1975
1991
4
'Splosion Man
2009
5
'Til Death Do Us Part
2013
6
(Almost) Total Mayhem
2011
7
(Not) Just another Space Shooter
2004
8
(T)Raumschiff Surprise - Periode 1
2004
9
*NSYNC Hotline Phone and Fantasy CD-Rom Game
2001
In [5]:
import bs4
import requests
def scrape_mediawiki_url(url):
headers = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36',
}
try:
response = requests.get(url, headers=headers, timeout=(9.1, 12.1))
except Exception as e:
print(__failure('Failed to scrape {}'.format(url)))
print(e)
return ''
soup = bs4.BeautifulSoup(response.text, 'lxml')
content = [node.text.strip() for node in soup.select('#mw-content-text') if node.text]
return ''.join(content)
In [6]:
# Sample scrape
content = scrape_mediawiki_url('http://roguebasin.roguelikedevelopment.org/index.php?title=100_Rogues')
print(content)
100 Rogues
Stable game
Developer
Dinofarm Games
Theme
Fantasy
Influences
Rogue
Released
(?)
Updated
May 6, 2010 (?)
Licensing
Commercial
P. Language
Platforms
iPhone
Interface
Graphical Tiles
Game Length
Medium
Official site of 100 Rogues
100 Rogues is an original Roguelike for the iPhone, iPod Touch and iPad devices. It features two playable classes with unique skill trees (similar to Diablo), several tilesets, original SNES-style music, and fully animated pixel art. 100 Rogues was developed from scratch for the iPhone OS devices, and has a click to move control scheme rather than a virtual d-pad.
Contents
1 Gameplay
2 Combat
3 Skills
4 Reception
Gameplay
A game of 100 Rogues is a linear progression through 12 dungeon levels spread across 3 worlds: The Bandit Hole, The Dungeon, and Hell. The first three levels of each world consist of randomly-generated maps initially populated by Mobs of different Monsters. After these Mobs are eliminated, levels are periodically repopulated with individual Monsters. The fourth and final level in each world is a pre-scripted fight with a Boss monster unique to that world. Travel through the worlds is 1-directional.
Combat
Combat is the core of gameplay, as mobs of monsters are the main obstacle to progression through the game. Ranged and Melee weapons exist, with different properties for accuracy, damage range, knockback capability, damage type (Magic, Physical, Godly, etc.). Random variations on these basic weapons exist, such as a Bow of Stopping, which can immobilize enemies when it lands a critical blow. Daggers and their variants also allow the player to make Backstab attacks, with greatly increased chances of landing critical hits when attacking from behind. Rare, specialized weapons also exist, with unusual and esoteric advantages, such as the Vim Tap dagger, which can sap energy from monsters that have special attacks (e.g. fireballs, summoning powers, vampiric attacks).
Class Restrictions exist on cerain Weapon types. For example, only the Fairy Wizard is capable of using a Wand. Certain Skills are required to use other weapons, such as Axes, which require the Heavy Armaments skill available only to the Crusader (Dinoman Bruiser class is planned to have this skill inherently).
Other weapons, namely the Gypsy's at-will fireball spell, require energy to use. Similarly, Bows require arrows to be able to attack. All items in the game can also be thrown as an improvised ranged attack. Some items are specifically designed to do so, and deal more damage as a result or can have apply unusual effects to the target area.
The Monsters that are the target of attacks can attempt to fight back with similar abilities. Most monsters have a basic melee or ranged attack, with the same energy or ammo expenditure rules applying where appropriate, and often have similar rules for knockback, poison, etc.. Many monsters also possess an uncommon ability, such as Teleswap. Teleswap can be executed by Gypsies and Ghosts, and it causes the monster to trade places with the player, often placing him in the center of a Mob of Monsters for which he is less than prepared.
Monsters have three basic behaviours: Melee, Ranged and Coward. Melee monsters will attempt to close distance if at all possible. Melee monsters even occasionally have Ranged attacks as well, but still prefer to close distance when movement is decided to be advantageous. Similarly, Ranged attacks attempt to stay 2-3 tiles away from the player, but some are still capable of melee attacks when pragmatic. Finally, Cowardly monsters will run from the player no matter what, with no ideal limit to the distance they keep from the player.
Especially in Hell, these abilities grow particularly complicated and common, providing substantially more strategic considerations and forward-thinking from the player to navigate or avoid combat scenarios effectively. The Flour can heal other monsters or debuff the player, making him more vulnerable to physical attacks. Mini Satans leave a trail of fire behind them as they walk. Heads can shoot lasers through walls.
Skills
Combat strategy is at the heart of gameplay, and the key to success in battle is the result of intelligent choice and application of skills. Skills are purchased using Skill Points, which are acquired at the first level and at even levels after that. Each player class has 8-10 Skills available for purchase, which can be broken down into three categories: Active, Passive, and Stat. Active skills must be selected using a contextual radial, and most deplete the character's energy pool by varying amounts to use. While most Active skills use the player's turn, there are a few exceptions, like Teleport and Leap Attack, which do not take a turn for the player. Passive skills are immediately applied to the player as permanent buffs when purchased. An example of this is Blood Bask, a skill possessed by the Skellyman Scoundrel class, which automatically returns health to the player when she attacks a monster that bleeds. Finally, Stat Skills boost a player stat, like Accuracy or Strength.
Some Skills can be purchased subsequent times to boost the skill's effects. Holy Fires can be assigned up to three skill points, which increases the Skill's damage with each point. Fairy Blessing, a Skill that works by placing an Auto-Resurrection buff on the player, wears off unless purchased at a rate of once-per-death.
Reception
100 Rogues was received very well, getting 4 or 5 stars from most reviewers. Complaints were mostly focused on the stability of the game on release; several critics noted crashes or other bugs. Dinofarm Games made very quick attempts to fix these issues and some reviewers have since tempered their reviews.
GamePro Review
TouchArcade Review
4.5/5 from AppSafari
"Must Have" from NoDPad
4 from AppSpy
In [7]:
import wikipedia
def scrape_wiki_id(pageid):
page = wikipedia.page(pageid=pageid)
print_wiki_page(page)
def scrape_wiki(title):
try:
searchstring = title
page = wikipedia.page(searchstring, auto_suggest=False)
# print_wiki_page(page)
return page
except wikipedia.DisambiguationError:
try:
searchstring = '{} (video game)'.format(title).replace(' ', '_')
page = wikipedia.page(searchstring, auto_suggest=False)
# print_wiki_page(page)
return page
except wikipedia.DisambiguationError:
try:
searchstring = '{} (Unix video game)'.format(title).replace(' ', '_')
page = wikipedia.page(searchstring, auto_suggest=False)
# print_wiki_page(page)
return page
except:
print(__warning(u'Wikipedia cannot find "{}"'.format(searchstring)))
except:
print(__warning(u'Wikipedia cannot find "{}"'.format(searchstring)))
except wikipedia.PageError:
try:
page = wikipedia.page(title, auto_suggest=False)
# print_wiki_page(page)
return page
except:
print(__warning(u'Search term "{}" returned nothing'.format(searchstring)))
def print_wiki_page(page):
print(page.title)
print(page.content)
print(page.references)
In [8]:
# Test Wikipedia crawl
print(scrape_wiki('Rogue Legacy'))
<WikipediaPage 'Rogue Legacy'>
In [9]:
import time
import requests
import urllib.parse
def scrape_duckduckgo(keywords, developer=""):
headers = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36',
}
searchstring = u'"{}" AND {} AND game AND (mortem OR history OR developer OR review)'.format(keywords, developer)
q = u'http://duckduckgo.com/html/?q={}'.format(urllib.parse.quote(searchstring.encode('utf-8')))
print(q)
response = requests.get(q, headers=headers, timeout=(9.1, 12.1))
soup = bs4.BeautifulSoup(response.text, 'lxml')
links = []
links = [node.get('href') for node in soup.select('a.result__a')]
return links
In [24]:
# scrape_duckduckgo('Ancient Domains of Mystery', 'Thomas Biskup')
In [10]:
def scrape(url, title):
headers = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36',
}
try:
print(__message('Scraping {} ...'.format(url)))
response = requests.get(url, headers=headers, timeout=(10.1, 15.1))
except Exception as e:
print(__failure('Failed to load {}'.format(url)))
print(e)
return None
html = response.text
if html and any(word in html.lower() for word in ['tutorial']):
return None
if html and any(word in html.lower() for word in [title, 'rogue', 'procedural', 'generation', 'mortem', 'review', 'history', 'develop', 'idea', 'inspir']):
print(__message('Found article'))
soup = bs4.BeautifulSoup(response.text, 'lxml')
selections = soup.select('body > p') + soup.select('div > p') + soup.select('table td')
content = [node.text.strip() for node in selections]
return ''.join(content)
return None
In [11]:
# For Roguelike games, we build a corpus with RogueTemple and DuckDuckGo
corpus = []
for index, roguelike in roguelikes[:531].iterrows():
print(roguelike)
title = roguelike['Name']
if not isinstance(title, str):
continue
text = []
rogue_temple = scrape_mediawiki_url(roguelike['RogueTemple'])
text.append(rogue_temple)
developers = str(roguelike['Developer']).replace(',', ' OR ')
links = scrape_duckduckgo(title, developers)
for link in links[:25]:
if 'roguebasin.roguelikedevelopment.org' in link \
or 'roguebasin.com' in link \
or 'wikipedia' in link:
continue
content = scrape(link, title)
if content:
text.append(content)
corpus.append({"title": title, "text": text})
# Be nice
if not links:
print('Sleeping')
time.sleep(10)
save_json('corpus-1.json', corpus)
Name 100 Heroes: Shopkeeper of Doom
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.bay12forums.com/smf/index.php?topic...
Status alpha
Released 2012/00/00
Updated 2012/10/25
Developer Paul Wright
Theme Economics/Trading
Influences Recettear
Name: 0, dtype: object
http://duckduckgo.com/html/?q=%22100%20Heroes%3A%20Shopkeeper%20of%20Doom%22%20AND%20Paul%20Wright%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name 100 Rogues
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.100rogues.com/
Status stable
Released 2010/05/06
Updated 2010/05/06
Developer Dinofarm Games
Theme Fantasy
Influences Rogue
Name: 1, dtype: object
http://duckduckgo.com/html/?q=%22100%20Rogues%22%20AND%20Dinofarm%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://100rogues.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dinofarmgames.com/forum/index.php?threads/100-rogues-on-android.1501/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dinofarmgames.com/100rogues/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamezebo.com/2010/05/06/100-rogues-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.patreon.com/dinofarmgames ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=RVIvKYBWLfo ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/459680/Auro_A_MonsterBumping_Adventure/ ...'
b' |MSG| Scraping https://www.facebook.com/100-Rogues-109776630046 ...'
b' |MSG| Scraping http://www.rpgfan.com/reviews/100_Rogues/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=688.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=688.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=688.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://mobilephonegames.wikia.com/wiki/100_Rogues ...'
b' |MSG| Found article'
b' |MSG| Scraping https://toucharcade.com/2010/05/04/100-rogues-review-a-remarkable-re-imagination-of-the-rogue-like/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/view/feature/167418/what_makes_a_game.php ...'
b' |MSG| Found article'
b' |MSG| Scraping http://juegos.game/play/100-rogues/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://100-rogues-ios.soft112.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dinofarmgames.bandcamp.com/track/how-to-play ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamerswithjobs.com/forum/10111 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/dinofarmgames ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kickstarter.com/projects/dinofarmgames/auro ...'
b' |MSG| Found article'
b' |MSG| Scraping https://whatoplay.com/ios/100-rogues/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pockettactics.com/articles/optimal-decisions-100-rogues-architect-keith-burgun-on-game-design/ ...'
b' |MSG| Scraping http://www.ign.com/games/100-rogues ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pocketgamer.co.uk/r/iPhone/100+Rogues/news.asp?c=25185 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.boardgamegeek.com/videogame/82125/100-rogues ...'
b' |MSG| Found article'
Name 1Quest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.ratzngodz.fr/
Status stable
Released 2014/02/20
Updated 2015/02/07
Developer Ratz 'N' Godz
Theme Fantasy
Influences DCSS, Dominion4
Name: 2, dtype: object
http://duckduckgo.com/html/?q=%221Quest%22%20AND%20Ratz%20%27N%27%20Godz%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://ratzngodz.itch.io/1quest ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ratzngodz.fr/ ...'
b' |MSG| Scraping https://apkdot.com/developer/ratz-n-godz/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sameapk.com/1quest/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamia.gamepedia.com/1Quest ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkdatamod.com/1quest-apk-ratz-n-godz/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/review/1quest.php ...'
b' |MSG| Scraping https://cueindiereview.blogspot.com/2014/06/1quest.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://4pda.ru/forum/index.php?showtopic=591740 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://1quest.droidinformer.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.android-apk.org/air.fr.ratzngodz.A1Quest/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/1quest.html ...'
b' |MSG| Scraping https://gamepciso.com/1-quest-pc-full-iso-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/post-mortem-review/1900-2911836/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/company/ratz-n-godz ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gameboomers.com/wtcheats/pcPp/Post_Mortem.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkplz.com/developer/ratz-n-godz ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=EhW_SXzyUXI ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=air.fr.ratzngodz.A1Quest&hl=ru ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apksfull.com/developer/ratz-n-godz ...'
b'!!FAIL!! Failed to load https://apksfull.com/developer/ratz-n-godz'
HTTPSConnectionPool(host='apksfull.com', port=443): Max retries exceeded with url: /developer/ratz-n-godz (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', '')],)",),))
b' |MSG| Scraping https://twitter.com/ratzngodz ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/mortem/223601 ...'
b' |MSG| Scraping https://gamesmojo.com/games/indie/1quest ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.exophase.com/developer/ratz-n-godz/ ...'
b' |MSG| Found article'
Name 3059
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/free3069/3059---...
Status stable
Released 2005/00/00
Updated 2005/06/11
Developer Phr00t
Theme Science Fiction, Alien Planets, Futuristic
Influences nethack
Name: 3, dtype: object
http://duckduckgo.com/html/?q=%223059%22%20AND%20Phr00t%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.freegamesutopia.com/game/3059/32/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mp3itune.ru/songs/%D0%9F%D1%80%D0%B8%D0%BA%D0%BE%D0%BB%D1%8B-%D1%87%D0%B0%D1%81%D1%82%D1%8C-38-%D0%A1%D0%BC%D0%B5%D1%88%D0%BD%D1%8B%D0%B5-%D1%82%D0%B0%D0%BD%D1%86%D1%8B/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.blockchain.com/ru/btc/block/0000000000000000000dfd111ac0dbab1f8a04e91d584a3c45068f9f0e5bc86b ...'
b' |MSG| Scraping https://lemmasoft.renai.us/forums/viewtopic.php?t=26192 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.blockchain.com/btc/block/00000000000000000003972fb3059fb64850692757c35b39ee13eb0b1b982c75 ...'
b' |MSG| Scraping https://wordbrainsolver.com/tag/word-bound-level-3059-solution/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://armorgames.com/community/thread/4812204/tank-games?page=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tig.wikia.com/wiki/3059 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.allegro.cc/depot/rpg/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://heritage3059.com.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://baza.drom.ru/sell_spare_parts/filtr-salona-mann-cu3059-g931767707.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.historicmysteries.com/death-masks/ ...'
b' |MSG| Scraping https://krsk.au.ru/12042517/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://vk.com/phr00t ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bg.battletech.com/forums/index.php?topic=25780.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sites.google.com/site/free3069/other-projects ...'
b' |MSG| Found article'
b' |MSG| Scraping https://vndb.org/v/all?q=;fil=tagspoil-0;rfil=;o=d;s=pop ...'
b' |MSG| Scraping https://forums.xfinity.com/t5/X1/xre-03059-Error/td-p/2586984 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=x2FcNvUH8T0 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://minecraft.novaskin.me/search?q=mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thebrick.com/store/locator ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/Games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://peerj.com/articles/3059 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.chesshistory.com/winter/extra/items.html ...'
b' |MSG| Found article'
Name 3069
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sites.google.com/site/free3069/
Status stable
Released 2009/07/06
Updated 2009/10/06
Developer Phr00t
Theme Science Fiction, Alien Planets, Futuristic
Influences 3059
Name: 4, dtype: object
http://duckduckgo.com/html/?q=%223069%22%20AND%20Phr00t%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://30x9.wikia.com/wiki/3069_(Game) ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.topgamedevelopers.com/game-directory/europe/northern-europe/sweden/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.blockchain.com/btc/block/00000000000000000009a496976fdc6d780acce5a876415bd7d01873dce1eb2f?show_adv=true ...'
b' |MSG| Scraping https://twitter.com/shgames/status/971100163254046720 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dardarkom.com/23847-3069-days-2013-watch-and-download.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.earth-syst-sci-data.net/10/1551/2018/essd-10-1551-2018.pdf ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pen2print.org/2018/09/ijr-vol-05-issue-15-may-2018.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.allegro.cc/depot/rpg/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freegamesutopia.com/game/3059/32/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.calameo.com/books/005394891cd7e40a748c4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sites.google.com/site/free3069/other-projects ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thanatosarchive.com/tag/post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gfx-hub.net/game-dev/ ...'
b' |MSG| Scraping https://stackoverflow.com/questions/24134849/whats-the-difference-between-wildcard-and-t ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sg.yamaha.com/en/products/audio_visual/av_receivers_amps/htr-3069/index.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.jooq.org/notes ...'
b' |MSG| Scraping http://g-and-t.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://a2zp30.com/ ...'
b' |MSG| Scraping https://newarkcemeteryuk.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ssl.uh.edu/engines/epi3069.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kickstarter.com/projects/phr00t/3089-action-rpg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thecrazypastor.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/mildlyinteresting/ ...'
b' |MSG| Found article'
Name 3079
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sites.google.com/site/3079game/
Status stable
Released 2011/10/25
Updated 2015/02/13
Developer Phr00t
Theme Science Fiction, Alien Planets, Futuristic
Influences 3059, 3069, Fallout, Minecraft
Name: 5, dtype: object
http://duckduckgo.com/html/?q=%223079%22%20AND%20Phr00t%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://3079phr00t.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://epicbrew.net/2012/05/04/interview-with-3079-developer-jeremy-phr00t/ ...'
b' |MSG| Scraping https://gameguideworld.net/exclusive-developer-interview-3079-developer-phr00t-future-game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=194273704 ...'
b' |MSG| Scraping http://small-games.info/?go=game&c=4&i=10377 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=cFyIyb7g26I ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=-zV8LStWU-w ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gameslikefinder.com/3079-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/259620/3079__Block_Action_RPG/ ...'
b' |MSG| Scraping https://brclip.com/rev/3079+gameplay/ ...'
b' |MSG| Scraping https://3079.kr.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metacritic.com/game/pc/3079 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://libgames.com/downloads/3079-396.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://3089game.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sites.google.com/site/3079game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/game-3079 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://BestGamer.ru/reviews/3079.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gentrieve.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://wholetsplay.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamepciso.com/3079-block-action-rpg-download-free/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://vk.com/phr00t ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/phr00t_ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/3079 ...'
b' |MSG| Found article'
Name 3089
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://3089game.wordpress.com/
Status stable
Released 2013/02/02
Updated 2014/02/27
Developer Phr00t
Theme Science Fiction, Alien Planets, Futuristic
Influences 3059, 3069, 3079, Borderlands
Name: 6, dtype: object
http://duckduckgo.com/html/?q=%223089%22%20AND%20Phr00t%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name 7KBRLL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/7kbrll
Status stable
Released 2014/07/11
Updated 2014/07/00
Developer OMVTW
Theme humor, psychological
Influences NetHack, Rogue
Name: 7, dtype: object
http://duckduckgo.com/html/?q=%227KBRLL%22%20AND%20OMVTW%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name 91
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://startcontinue.com/
Status beta
Released 1000/00/00
Updated 1000/00/00
Developer Greg Smith
Theme Modern
Influences NaN
Name: 8, dtype: object
http://duckduckgo.com/html/?q=%2291%22%20AND%20Greg%20Smith%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name @Star Wars
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.caffeineoverdose.me/
Status alpha
Released 2012/06/00
Updated 2012/12/00
Developer Andrew Wright (aka roocey)
Theme Science Fiction, Space
Influences Crawl and many others
Name: 9, dtype: object
http://duckduckgo.com/html/?q=%22%40Star%20Wars%22%20AND%20Andrew%20Wright%20%28aka%20roocey%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name ADOM
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.adom.de/
Status major
Released 1994/00/00
Updated 2018/05/02
Developer Thomas Biskup
Theme Fantasy
Influences Hack
Name: 10, dtype: object
http://duckduckgo.com/html/?q=%22ADOM%22%20AND%20Thomas%20Biskup%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://store.steampowered.com/app/333300/ADOM_Ancient_Domains_Of_Mystery/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=iZUXjbcAfYs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/tag/adom-ancient-domains-of-mystery/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rodneylives.blogspot.com/2018/07/atplay86.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.roguetemple.com/interviews/thomas-biskup-interview-1/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ancientdomainsofmystery.com/ ...'
b' |MSG| Scraping https://twitter.com/adom_dev ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.adomgb.info/adomfaq.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ancardia.wikia.com/wiki/Thomas_Biskup ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lgdb.org/game/adom-ancient-domains-of-mystery ...'
b' |MSG| Found article'
b' |MSG| Scraping http://adom2.wikidot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wn.com/Thomas_Biskup ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/+ThomasBiskup ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamspy.com/dev/Thomas+Biskup ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefullwiki.org/ADOM ...'
b' |MSG| Found article'
b' |MSG| Scraping https://adom-ancient-domains-of-mystery.en.softonic.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://500px.com/thomasbiskup ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=258925365 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.exophase.com/developer/thomas-biskup/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/adom-ancient-domains-of-mystery ...'
b' |MSG| Scraping http://www.roguelikeradio.com/2012/05/episode-33-interview-with-thomas-biskup.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/adom-ancient-domains-of-mystery.html ...'
b' |MSG| Scraping http://www.namepeeper.com/s/thomas+biskup ...'
b' |MSG| Found article'
Name ADOM II
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.ancientdomainsofmystery.com/
Status beta
Released 2011/00/00
Updated 2013/00/00
Developer Thomas Biskup
Theme Fantasy
Influences ADOM
Name: 11, dtype: object
http://duckduckgo.com/html/?q=%22ADOM%20II%22%20AND%20Thomas%20Biskup%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://adom2.wikidot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ancientdomainsofmystery.com/2017/11/five-adom-announcements-made-at.html ...'
b' |MSG| Scraping https://www.ancientdomainsofmystery.com/ ...'
b' |MSG| Scraping https://rodneylives.blogspot.com/2018/07/atplay86.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2012/05/episode-33-interview-with-thomas-biskup.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.adomgb.info/adomfaq.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/channel/UCvQC60VC8Ya7kHXtQ4K1csg ...'
b' |MSG| Scraping https://500px.com/thomasbiskup ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.yasni.com/thomas+biskup/check+people/report+statement ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesindustry.biz/articles/2013-01-30-where-im-a-brief-look-at-the-resurgence-of-roguelikes ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.namepeeper.com/s/thomas+biskup ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki2.org/en/Ancient_Domains_of_Mystery ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.giantbomb.com/adom-ii/3030-37679/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/adom_dev/status/1032750213147095040 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mixcloud.com/roguelikeradio/episode-33-interview-with-thomas-biskup-creator-of-adom/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://podcastfinder.co/podcasts/roguelike-radio/episode-33-interview-with-thomas-biskup-creator-of-adom ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wn.com/Adom ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=2386.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=2386.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=2386.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://dvc.academic.ru/dic.nsf/ruwiki/80171 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ru-wiki.org/wiki/Ancient_Domains_of_Mystery ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ancardia.wikia.com/wiki/ADOM_Resurrection_campaign ...'
b' |MSG| Found article'
b' |MSG| Scraping https://classicreload.com/ancient-domains-of-mystery.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://adom.de.w3lookup.org/ ...'
b' |MSG| Found article'
Name AGB Hack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.freewebs.com/drussell/#GBA
Status stable
Released 2006/11/26
Updated 2006/11/26
Developer Donnie Russell
Theme NaN
Influences NaN
Name: 12, dtype: object
http://duckduckgo.com/html/?q=%22AGB%20Hack%22%20AND%20Donnie%20Russell%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://alexvampire.wordpress.com/2015/09/27/goodgba-v3-23/ ...'
b' |MSG| Scraping https://gbatemp.net/download/agb-hack.23192/ ...'
b' |MSG| Scraping https://filetrip.net/gba-downloads/homebrew/download-agb-hack-1-6-f23192.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.roguetemple.com/category/nethack/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pdroms.de/gameboyadvance/agb-hack-v1-5-gba-game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefabrique.com/roms/motocross-challenge/ ...'
b' |MSG| Scraping http://romfind.com/games/gba/agbhack-v11-by-donnie-russell.html ...'
b' |MSG| Scraping https://www.apktron.com/2016/08/choices-stories-you-play-mod-apk-111.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dcemu.co.uk/vbulletin/threads/71120-AGB-Hack-v1-5 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://eugame.host4.men/game/63082/ ...'
Name AGB Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.freewebs.com/drussell/Download.htm
Status stable
Released 2007/00/00
Updated 2007/08/05
Developer Donnie Russell
Theme Fantasy
Influences ?
Name: 13, dtype: object
http://duckduckgo.com/html/?q=%22AGB%20Rogue%22%20AND%20Donnie%20Russell%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.myabandonware.com/game/rogue-4n/play-4n ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.myabandonware.com/game/rogue-4n ...'
b' |MSG| Scraping https://gbatemp.net/download/agb-rogue.23187/ ...'
b' |MSG| Scraping https://blog.roguetemple.com/category/nethack/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.zophar.net/pdroms/gba/agb_rogue.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=aaOvU9VNn34 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rainbowmusic.ca/ ...'
b'!!FAIL!! Failed to load https://www.rainbowmusic.ca/'
HTTPSConnectionPool(host='www.rainbowmusic.ca', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://forum.quartertothree.com/t/good-gba-roguelike/18566?page=2 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://romfind.com/games/gba/agbrogue-v121-by-donnie-russell.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://vgtimes.ru/games/rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dosgames.ru/games/dos/rogue/ ...'
b' |MSG| Found article'
Name AMoria
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status stable
Released 1000/00/00
Updated 1000/00/00
Developer NaN
Theme NaN
Influences Moria
Name: 14, dtype: object
http://duckduckgo.com/html/?q=%22AMoria%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.amoria.ch/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefullwiki.org/Amoria ...'
b' |MSG| Scraping https://strategywiki.org/wiki/MapleStory/Towns/Amoria ...'
b' |MSG| Found article'
b' |MSG| Scraping https://amoria.com.mx/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amoriabond.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://answers.yahoo.com/question/index?qid=20090125133915AAAYSRZ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://maplestory.wikia.com/wiki/Category:Amoria ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mapleroyals.com/forum/threads/amoria-party-quest-apq.31743/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forums.maplestory.nexon.net/discussion/15400/amoria-and-hairstyles ...'
b' |MSG| Scraping https://worldofamoria.wordpress.com/2008/01/29/new-map-log-for-amoria-team/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.amoria.se/ ...'
b' |MSG| Scraping https://micronations.wiki/wiki/Grand_Union_of_Amoria ...'
b' |MSG| Found article'
b' |MSG| Scraping https://global.hidden-street.net/quest/victoria-island/amoria-beauty-or-beast ...'
b'!!FAIL!! Failed to load https://global.hidden-street.net/quest/victoria-island/amoria-beauty-or-beast'
HTTPSConnectionPool(host='global.hidden-street.net', port=443): Max retries exceeded with url: /quest/victoria-island/amoria-beauty-or-beast (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://alumnivandeventer.org/amoria/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://simpsonsaday.wordpress.com/tag/amoria-phlebitis/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://maplewiki.net/index.php?title=Amoria ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.babynology.com/name/amoria-f.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mugenarchive.com/wiki/MapleStory/Towns/Amoria ...'
b' |MSG| Scraping https://amoriabond.careers/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.glassdoor.com/Overview/Working-at-Amoria-Bond-EI_IE768322.11,22.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.omnilexica.com/?q=amoria ...'
b' |MSG| Found article'
b' |MSG| Scraping http://myst.forumotion.com/t438-list-of-amoria-pqers ...'
b' |MSG| Scraping https://www.facebook.com/Amoria-463320430538534/ ...'
b' |MSG| Scraping https://www.amoriabazaar.com/ ...'
b' |MSG| Found article'
Name A False Saint, An Honest Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://humbit.com/rogue
Status alpha
Released 2013/03/16
Updated 2013/04/21
Developer Jeremiah Reid
Theme Wilderness Survival
Influences real life, this outsideonline.com article.
Name: 15, dtype: object
http://duckduckgo.com/html/?q=%22A%20False%20Saint%2C%20An%20Honest%20Rogue%22%20AND%20Jeremiah%20Reid%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://humbit.com/rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/review/a-false-saint-an-honest-rogue.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/games/a-false-saint-an-honest-rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2017/08/episode-138-golden-krone-hotel.html ...'
b' |MSG| Found article'
Name A False Saint, An Honest Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://humbit.com/rogue
Status alpha
Released 2013/03/16
Updated 2013/04/21
Developer Jeremiah Reid
Theme Wilderness Survival
Influences real life, this outsideonline.com article.
Name: 16, dtype: object
http://duckduckgo.com/html/?q=%22A%20False%20Saint%2C%20An%20Honest%20Rogue%22%20AND%20Jeremiah%20Reid%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://humbit.com/rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/review/a-false-saint-an-honest-rogue.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/games/a-false-saint-an-honest-rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2017/08/episode-138-golden-krone-hotel.html ...'
b' |MSG| Found article'
Name Adeo
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://adeo.pfhoenix.com/
Status alpha
Released 2006/00/00
Updated 2006/11/05
Developer Pfhoenix
Theme Science Fiction
Influences Escape Velocity, Fallout, Angband
Name: 17, dtype: object
http://duckduckgo.com/html/?q=%22Adeo%22%20AND%20Pfhoenix%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.adeo.com/ru/adeo ...'
b' |MSG| Scraping https://fi.co/about ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forum.shrapnelgames.com/showthread.php?t=27081 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.civfanatics.com/threads/language-translations-for-leader-sayings.572324/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://fi.co/mentors ...'
b' |MSG| Scraping https://www.aparthotel-adeo.hr/en/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wordnik.com/words/mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping https://everipedia.org/wiki/Adeo_Ressi/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.linkedin.com/in/adeoressi ...'
b' |MSG| Scraping http://www.adeo.ie/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://adeodevelopment.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wiktionary.org/wiki/adeo ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.adeoressi.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://adeo.si/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://adeo-i.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://adeotravel.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.adeo.in/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mautic.com/resources/success-stories/adeo-health-science/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.forbes.com/sites/forbestreptalks/2015/04/08/adeo-ressi-says-the-dutch-are-kooky-france-is-a-nightmare-and-a-startup-wave-is-coming-to-the-u-s/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.placementstore.com/cg-vyapam-adeo-vacancy-2017/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/adeoressi ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wrike.com/blog/interview-with-adeo-ressi/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=yoR5DQpDWfQ ...'
b' |MSG| Found article'
Name Advanced Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rogue.rogueforge.net/
Status stable
Released 2005/86/93
Updated 2007/08/01
Developer Michael Morgan, Ken Dalka, Roguelike Restorati...
Theme NaN
Influences Rogue 3.6, Super-Rogue
Name: 18, dtype: object
http://duckduckgo.com/html/?q=%22Advanced%20Rogue%22%20AND%20Michael%20Morgan%20OR%20%20Ken%20Dalka%20OR%20%20Roguelike%20Restoration%20Project%20OR%20%20others%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.roguelikedevelopment.org/archive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://the-roguelike-restoration-project.soft112.com/download.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=2676.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=2676.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=2676.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://goodmenproject.com/featured-content/michael-cochran-wcz/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.filebuzz.com/fileinfo/181137/The_Roguelike_Restoration_Project.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.veteranstoday.com/2018/09/01/william-cooper-lost-history-or-something-else/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://netopensource.com/projects/the-roguelike-restoration-project ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rec.games.roguelike.rogue.narkive.com/MKgKlBhd/urogue-and-xrogue-ports ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.daolnwod.com/the-roguelike-restoration-project.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/advanced-rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://britzl.github.io/roguearchive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/RoguelikeRestorationProject/urogue1.03 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.d20pfsrd.com/classes/unchained-classes/rogue-unchained/rogue-talents-advanced/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://spiralvortexplay.com/svp/flash/advanced-rogue-intelligence-assault-aria/ ...'
b' |MSG| Scraping https://erogegames.com/social/games-lobby/4273-advanced-rogue-intelligence-assault/ ...'
b' |MSG| Scraping http://exiledkingdoms.com/wiki/index.php?title=Rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.easyfreeware.com/the_roguelike_restoration_project-156893-freeware.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rlgallery.org/notes/urogue-versions.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.fo/ZKXLj ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.download32.com/the-roguelike-restoration-project-b127469.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=-YkvA7Arou4 ...'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://aonprd.com/RogueTalents.aspx ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sites.google.com/site/pathfinderogc/classes/unchained-classes/rogue-unchained ...'
b' |MSG| Found article'
Name Agduria
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://koti.mbnet.fi/paulkp/agduria/index.htm
Status alpha
Released 2009/00/00
Updated 2009/06/18
Developer Paul Pekkarinen
Theme Fantasy
Influences Nethack
Name: 19, dtype: object
http://duckduckgo.com/html/?q=%22Agduria%22%20AND%20Paul%20Pekkarinen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=372.15 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=372.15'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=372.15 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.unscrambleanagrams.com/agduria ...'
Name Albion
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.triangularpixels.com/games/albion/
Status alpha
Released 2010/01/24
Updated 2010/01/24
Developer OrangyTang
Theme Medieval Fantasy
Influences Exile, Shining Force
Name: 20, dtype: object
http://duckduckgo.com/html/?q=%22Albion%22%20AND%20OrangyTang%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=d0bTH5E80xs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.keengamer.com/Articles/View/16820 ...'
b' |MSG| Scraping https://forum.albiononline.com/index.php/Thread/51965-Ad-Mortem-Inimicus/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.espnfc.co.uk/report?gameId=513802 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmorpg.com/albion-online/columns/one-week-review-in-progress-1000011903 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/albion-review/1900-2537924/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://OnlineMusic.com.ua/mp3/carpe-mortem-and-albion-and-m%C9%99l-un.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/Albion-Natt-954355111305343/?ref=py_c ...'
b' |MSG| Scraping https://www.pcgamer.com/x3-albion-prelude-review/ ...'
b' |MSG| Scraping https://www.quora.com/What-is-the-origin-and-history-of-the-term-Albion-in-reference-to-Britain-or-just-Scotland?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.albion.co.jp/this_is_albion/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamezebo.com/2012/11/14/mirrors-albion-review/ ...'
b' |MSG| Scraping http://albioncycles.com.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://albionfc.uy/ ...'
b' |MSG| Scraping http://www.talesofalbion.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://albiononline.gamepedia.com/The_Undead ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamerevolution.com/guides/341513-albion-online-find-copper-ore-tin-iron-titanium ...'
b' |MSG| Found article'
b' |MSG| Scraping https://albionhotel.com.au/ ...'
b' |MSG| Scraping https://steamcommunity.com/app/201310/discussions/0/618458030656847754/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://shop.albiongames.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.boardgamegeek.com/thread/1704572/faction-discussion-returns-albion ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.brightonandhovealbion.com/club-info/history/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://campalbion.com.au/ ...'
b' |MSG| Scraping http://albionvetsurgery.com.au/ ...'
Name AliensRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://alien.chaosforge.org/
Status beta
Released 2007/03/18
Updated 2012/09/08
Developer Kornel Kisielewicz
Theme Horror, Science Fiction
Influences 'Aliens'' movie, ''Alien Breed: Tower Assault''
Name: 21, dtype: object
http://duckduckgo.com/html/?q=%22AliensRL%22%20AND%20Kornel%20Kisielewicz%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Allure of the Stars
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://allureofthestars.com/
Status beta
Released 2011/08/05
Updated 2018/06/30
Developer Andres Löh, Mikolaj Konarski
Theme near-future Sci-Fi
Influences Angband, X-Com
Name: 22, dtype: object
http://duckduckgo.com/html/?q=%22Allure%20of%20the%20Stars%22%20AND%20Andres%20L%C3%B6h%20OR%20%20Mikolaj%20Konarski%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name AloneRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/fabioticconi/alone-rl
Status alpha
Released 2017/00/00
Updated 2017/00/00
Developer Fabio Ticconi
Theme Survival, Simulation
Influences UnReal World, Wayward
Name: 23, dtype: object
http://duckduckgo.com/html/?q=%22AloneRL%22%20AND%20Fabio%20Ticconi%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Alphaman
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/there%20i...
Status stable
Released 1995/00/00
Updated 1995/00/00
Developer Jeffrey R. Olson
Theme Post-Apocalyptic
Influences NaN
Name: 24, dtype: object
http://duckduckgo.com/html/?q=%22Alphaman%22%20AND%20Jeffrey%20R.%20Olson%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Ananias
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ananiasgame.com/
Status stable
Released 2014/05/14
Updated 2018/1/13
Developer Slash
Theme Fantasy
Influences DoomRL
Name: 25, dtype: object
http://duckduckgo.com/html/?q=%22Ananias%22%20AND%20Slash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Angband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rephial.org/
Status major
Released 1990/00/00
Updated 2017/12/22
Developer Alex Cutler, Andy Astrand, many others. Angban...
Theme Fantasy
Influences Moria, Tolkien's Middle-Earth, *D&D, Rolemaster
Name: 26, dtype: object
http://duckduckgo.com/html/?q=%22Angband%22%20AND%20Alex%20Cutler%20OR%20%20Andy%20Astrand%20OR%20%20many%20others.%20Angband%20is%20currently%20maintained%20by%20Nick%20McConnell%20and%20the%20Angband%20devteam.%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Animeband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://angband.oook.cz/animeband/
Status stable
Released 2003/05/23
Updated 2006/11/22
Developer Ernest Huang (''animeband''@''oook.cz'')
Theme Fantasy/Anime
Influences Angband 2.9.3
Name: 27, dtype: object
http://duckduckgo.com/html/?q=%22Animeband%22%20AND%20Ernest%20Huang%20%28%27%27animeband%27%27%40%27%27oook.cz%27%27%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Anoxic Depths
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguelikeeducation.org/20.html
Status stable
Released 2015/03/15
Updated 2015/03/15
Developer Tectorum
Theme Wilderness Survival, Underwater, SCUBA
Influences Kunoichi, EmoSquid
Name: 28, dtype: object
http://duckduckgo.com/html/?q=%22Anoxic%20Depths%22%20AND%20Tectorum%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Anoxic Depths: Caves of the Yendori
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://studiotectorum.com/anoxic-depths/
Status stable
Released 2015/06/03
Updated 2015/08/16
Developer Studio Tectorum (Tectorum)
Theme Underwater, SCUBA
Influences Anoxic Depths
Name: 29, dtype: object
http://duckduckgo.com/html/?q=%22Anoxic%20Depths%3A%20Caves%20of%20the%20Yendori%22%20AND%20Studio%20Tectorum%20%28Tectorum%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=-9ud3OaXGDo ...'
b' |MSG| Found article'
b' |MSG| Scraping https://studiotectorum.itch.io/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/channel/UCqu4_GhfYqVOZU62Pf2YpsA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itch.io/games/platform-windows/tag-educational ...'
b' |MSG| Scraping https://www.uvlist.net/platforms/games-list/106 ...'
b' |MSG| Scraping https://www.uvlist.net/groups/games-list/download ...'
b' |MSG| Scraping https://itch.io/games/tag-perma-death/tag-turn-based ...'
b' |MSG| Scraping https://jesterbards.itch.io/ ...'
b' |MSG| Found article'
Name Aquarium Arena
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/valrak/AquariumRL
Status alpha
Released 2016/00/00
Updated 2016/09/30
Developer valrak
Theme Underwater
Influences NaN
Name: 30, dtype: object
http://duckduckgo.com/html/?q=%22Aquarium%20Arena%22%20AND%20valrak%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://github.com/valrak/AquariumRL ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.onegreenplanet.org/news/dolphin-captured-taiji-hunts-abandoned-aquarium-japan/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ut2k4-wtfdiealotsmaps.blogspot.com/2015/05/dm-wtf-aquarium-arena-m-map-based.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://toucharcade.com/2018/08/31/arena-of-valor-news-aov-prime-details-cybercore-wukong-and-amily/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tr-tr.facebook.com/aquariumarena/about ...'
b' |MSG| Found article'
b' |MSG| Scraping https://fortniteintel.com/2018/08/31/battle-royale-developer-update-8-31-storm-destruction-vaulting-the-revolver-and-item-updates/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://hattrickportal.pro/Arena.aspx?ArenaID=2016644 ...'
b' |MSG| Scraping https://www.valiance.gg/news/vision-gaming-and-team-throne-are-the-favorites-in-the-european-semi-finals?tags=gp-cops%2Chomepage%2Cc-ops-summer+season-2018 ...'
b' |MSG| Scraping https://toucharcade.com/2014/06/18/new-iphone-games-june-19/ ...'
b' |MSG| Scraping http://www.euronews.com/2018/08/31/watch-seal-and-butterfly-play-inter-species-game-at-aquarium ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/channel/UCEpxWBSHxE6LmF3dg-ZoI8Q ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.independent.co.uk/news/world/asia/japan-dolphin-penguins-aquarium-abandoned-inubosaki-marine-park-honey-a8516216.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.albiononline.com/index.php/Thread/96694-Create-item-progression-and-personality/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq=arena&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229466&kwid=902099&mtid=824&kw=lg ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/news/2018/09/guide_upcoming_nintendo_switch_games_and_accessories_for_september_and_october ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rybkaforum.net/cgi-bin/rybkaforum/topic_show.pl?tid=7399 ...'
b' |MSG| Scraping https://www.thegamer.com/games-troll-players-hacking-ban/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://idvideos.net/s/aquarium ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamerevolution.com/features/424463-donut-countys-creator-talks-about-stupid-raccoons-quadcopters-what-remains-of-edith-finch-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.holidaypoint.com.au/the-10-largest-aquariums-in-the-world/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rover.ebay.com/rover/1/710-53481-19255-0/1?icep_ff3=2&pub=5574933636&toolid=10001&campid=5336728181&customid=&mpre=https%3A%2F%2Fwww%2Eebay%2Eco%2Euk%2Fb%2FWhite-Aquarium-Gravel-in-Aquarium-Gravel-Substrate%2F46439%2Fbn%5F7023492554 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://casual-runner.com/2017-02-09-florida-aquarium/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mp3youtubing7.online/mp3/aquarium-arena-arhangelsk.html ...'
b' |MSG| Scraping https://www.genyoutube.net/search.php?q=the+aquarium+extended ...'
b' |MSG| Found article'
Name Arcan Myth RL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://arcanmyth.blogspot.com/
Status alpha
Released 2010/02/02
Updated 2010/05/12
Developer ProvoliK
Theme Fantasy
Influences NaN
Name: 31, dtype: object
http://duckduckgo.com/html/?q=%22Arcan%20Myth%20RL%22%20AND%20ProvoliK%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=721.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=721.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=721.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://blog.roguetemple.com/articles/2010-roguelike-of-the-year-rankings/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://arcanmyth.blogspot.ru/p/downloads.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/DG1CsVXk ...'
b' |MSG| Scraping https://pastebin.com/U4n85p8s ...'
Name ArenaRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://www.lassnig.net/wordpress/index.php/ca...
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Mario Lassnig
Theme Tactical Sci-Fi
Influences Quake 3 Arena
Name: 32, dtype: object
http://duckduckgo.com/html/?q=%22ArenaRL%22%20AND%20Mario%20Lassnig%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=5240.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=5240.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=5240.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://archive.org/stream/vocabolarioitali00pasi/vocabolarioitali00pasi_djvu.txt ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gethashtags.com/instagram/tag/arenarl ...'
Name Armoured Commander
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.armouredcommander.com/blog/armoured...
Status beta
Released 2015/02/02
Updated 2017/03/16
Developer Gregory Adam Scott (Rev. Sudasana), Eric Norma...
Theme Historical
Influences Advanced Squad Leader
Name: 33, dtype: object
http://duckduckgo.com/html/?q=%22Armoured%20Commander%22%20AND%20Gregory%20Adam%20Scott%20%28Rev.%20Sudasana%29%20OR%20%20Eric%20Normandeau%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.armouredcommander.com/blog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/sudasana/armcom ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/sudasana/armcom2 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/game/armoured-commander/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wargamer.com/articles/one-week-in-normandy-an-armoured-commander-aar/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/forums/threads/112963/unread ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=u0zBbNr7XeA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://games.softpedia.com/get/Freeware-Games/Armoured-Commander.shtml ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=5354.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=5354.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=5354.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://uzclip.net/rev/wwii+tank+commander+gameplay/ ...'
b' |MSG| Scraping https://twitter.com/armouredcmdr/status/1031827147663581184 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://it-clip.net/rev/armoured+gregory/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bay12forums.com/smf/index.php?topic=150801.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikedev/comments/59u44j/warning_a_and_manhattan_distance/ ...'
b' |MSG| Scraping https://gamasutra.com/blogs/JoshGe/20170207/290928/Two_Years_of_Roguelike_Development_FAQs.php ...'
b' |MSG| Scraping https://gamasutra.com/blogs/JoshGe/20160302/267033/One_Year_of_Roguelike_Development_FAQs.php ...'
b' |MSG| Scraping https://www.giantbomb.com/armoured-commander/3030-57831/guide/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamer.livejournal.com/1526105.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.memmax.com/s_armor+commander/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.subsim.com/radioroom/showthread.php?t=223507 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://grogheads.com/forums/index.php?topic=12714.30 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikes/comments/3ia62u/six_months_of_roguelike_development_faqs/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://longlist.org/armoured+commander+ii+++first+look ...'
Name Ascension
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.ascensionrl.com/
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer motioneffector
Theme Atypical Fantasy
Influences ZAngband, Minecraft, Dwarf Fortress, World of ...
Name: 34, dtype: object
http://duckduckgo.com/html/?q=%22Ascension%22%20AND%20motioneffector%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.ascensiongamedev.com/ ...'
b' |MSG| Scraping http://forum.sidemc.net/topic/31092-ascension-navyki-chast-4/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/ultima-ix-ascension-review/1900-2531654/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tparser.org/Keys-To-Ascension-2 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/blogs/KengJin/20151022/255822/PostMortem_Making_a_Fan_Game__Why_How_and_What_happens_next.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theverge.com/entertainment/2014/12/16/7405161/ascension-review-no-future-syfy ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ascensiongame.com/game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.oxforddictionaries.com/usage/a-historic-event-or-an-historic-event ...'
b' |MSG| Scraping https://ascension.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://filmascension.com/ ...'
b' |MSG| Scraping https://ascensionmag.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=6_tuUqjIKRU ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ascension-games.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rinmarugames.com/playgame.php?game_link=ascension-chapter-1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wccftech.com/review/nobunagas-ambition-sphere-of-influence-ascension-review/ ...'
b' |MSG| Scraping https://ascensionproject.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usgamer.net/articles/05-03-2018-guide-to-final-fantasy-15s-ascension-grid ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tradingcardgames.com/review/ascension-chronicle-of-the-godslayer/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://magnesiumninja.itch.io/ascension ...'
b' |MSG| Found article'
b' |MSG| Scraping http://vidyafrazier.com/detachment-and-withdrawl-are-these-ascension-symptoms-2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/domain/project-ascension.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://adventofascension.gamepedia.com/Guides/Early_Game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/499940/Ascension_VR/ ...'
b' |MSG| Scraping https://www.siggraph.org/education/materials/HyperGraph/animation/character_animation/motion_capture/history1.htm ...'
b' |MSG| Found article'
Name Ascii Sector
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.asciisector.net/
Status beta
Released 2007/09/14
Updated 2016/01/22
Developer Christian Knudsen
Theme Science Fiction, Space, Economics/Trading
Influences Wing Commander: Privateer
Name: 35, dtype: object
http://duckduckgo.com/html/?q=%22Ascii%20Sector%22%20AND%20Christian%20Knudsen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Ascii Wilderness
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://asciiwilderness.blogspot.com/p/ascii-wi...
Status alpha
Released 2011/00/00
Updated 2011/00/00
Developer Russell Ackerman
Theme Post-Apocalyptic, Survival
Influences UnReal World, Terraria, Minecraft, Fallout, An...
Name: 36, dtype: object
http://duckduckgo.com/html/?q=%22Ascii%20Wilderness%22%20AND%20Russell%20Ackerman%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Asylum Escape
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.toothandclawgames.tumblr.com/
Status beta
Released 2013/09/14
Updated 2013/10/10
Developer Dan McGrath/Tooth&Claw Games
Theme Darkness, Claustrophobia
Influences Brogue, Claustrophobia, HPLovecraft
Name: 37, dtype: object
http://duckduckgo.com/html/?q=%22Asylum%20Escape%22%20AND%20Dan%20McGrath/Tooth%26Claw%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Atinar
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://atinarrl.blogspot.com/
Status alpha
Released 2008/04/09
Updated 2008/04/09
Developer Hector San Martin
Theme NaN
Influences NaN
Name: 38, dtype: object
http://duckduckgo.com/html/?q=%22Atinar%22%20AND%20Hector%20San%20Martin%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Atlas Warriors
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.nerdygentleman.com/
Status alpha
Released 2014/10/24
Updated 2014/12/08
Developer Lachlan Kingsford
Theme Fantasy
Influences Brogue, ADOM
Name: 39, dtype: object
http://duckduckgo.com/html/?q=%22Atlas%20Warriors%22%20AND%20Lachlan%20Kingsford%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name AtomicRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://darcsden.com/RylandAlmanza/AtomicRogue
Status alpha
Released 2012/00/00
Updated 2012/00/00
Developer RylandAlmanza
Theme Fantasy Sillyness
Influences NaN
Name: 40, dtype: object
http://duckduckgo.com/html/?q=%22AtomicRogue%22%20AND%20RylandAlmanza%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Atrogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://atrogue.sourceforge.net/
Status alpha
Released 2001/10/00
Updated 2010/02/22
Developer Arne Thomaßen
Theme NaN
Influences NaN
Name: 41, dtype: object
http://duckduckgo.com/html/?q=%22Atrogue%22%20AND%20Arne%20Thoma%26szlig%3Ben%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Aurora
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://auroraroguelike.com/
Status alpha
Released 2013/01/00
Updated 2015/07/08
Developer Jedi-Philosopher
Theme Space exploration
Influences Prospector, Star Control
Name: 42, dtype: object
http://duckduckgo.com/html/?q=%22Aurora%22%20AND%20Jedi-Philosopher%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Avanor
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://avanor.sourceforge.net//
Status stable
Released 2001/11/28
Updated 2006/05/30
Developer Vadim Gaidukevich
Theme Fantasy
Influences Ancient Domains of Mystery
Name: 43, dtype: object
http://duckduckgo.com/html/?q=%22Avanor%22%20AND%20Vadim%20Gaidukevich%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Axu
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/axudev/home
Status alpha
Released 2015/11/02
Updated 2017/09/26
Developer Matt Ritchie (Cynapse)
Theme Science Fantasy
Influences Caves of Qud, ADOM, IVAN
Name: 44, dtype: object
http://duckduckgo.com/html/?q=%22Axu%22%20AND%20Matt%20Ritchie%20%28Cynapse%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name BOSS
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://web.archive.org/web/20130118205257/htt...
Status stable
Released 1990/11/00
Updated 2012/10/12
Developer Robert Gulledge, Jason Black
Theme Science Fiction
Influences Moria
Name: 45, dtype: object
http://duckduckgo.com/html/?q=%22BOSS%22%20AND%20Robert%20Gulledge%20OR%20%20Jason%20Black%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Backwards Gravity
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://backwardsgravity.blogspot.com/
Status stable
Released 2009/03/14
Updated 1000/00/00
Developer Elig
Theme NaN
Influences NaN
Name: 46, dtype: object
http://duckduckgo.com/html/?q=%22Backwards%20Gravity%22%20AND%20Elig%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Bardess
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/bardesstemp
Status beta
Released 2011/06/13
Updated 2013/06/12
Developer Jordan "Deepshock" Thomas
Theme High Fantasy, tactical
Influences D&D 4th Edition, ADOM, Dragon Quest IX, Elder ...
Name: 47, dtype: object
http://duckduckgo.com/html/?q=%22Bardess%22%20AND%20Jordan%20%22Deepshock%22%20Thomas%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Battlement
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status stable
Released 2010/02/00
Updated 2010/02/00
Developer Dathgale
Theme Fantasy Warfare
Influences Castle of the Winds, Archon
Name: 48, dtype: object
http://duckduckgo.com/html/?q=%22Battlement%22%20AND%20Dathgale%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Beggar
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://beggar.sourceforge.net/
Status beta
Released 2007/10/4
Updated 2007/11/21
Developer valianjuan
Theme Fantasy
Influences ??
Name: 49, dtype: object
http://duckduckgo.com/html/?q=%22Beggar%22%20AND%20valianjuan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Beltham's Lair
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://redpillgames.altervista.org/bl/beltham.php
Status beta
Released 2013/04/25
Updated 2013/04/25
Developer RedPill Games
Theme Fantasy
Influences Adom
Name: 50, dtype: object
http://duckduckgo.com/html/?q=%22Beltham%27s%20Lair%22%20AND%20RedPill%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.moddb.com/games/belthams-lair ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/company/redpill-games/games ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.moddb.com/games/belthams-lair/downloads/belthams-lair-02 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamedev.net/blogs/entry/2259197-dear-journal/ ...'
b' |MSG| Scraping https://www.moddb.com/company/redpill-games/games ...'
b' |MSG| Found article'
Name Berserk!
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sourceforge.net/projects/berserkrl/
Status beta
Released 2006/10/23
Updated 2007/11/18
Developer Kornel Kisielewicz
Theme Fantasy
Influences Berserk Manga
Name: 51, dtype: object
http://duckduckgo.com/html/?q=%22Berserk%21%22%20AND%20Kornel%20Kisielewicz%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://twitter.com/epyoncf ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/epyoncf/status/804482084702187520 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.meetup.com/The-Dutch-Cpp-Group/events/240632950/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.chaosforge.org/index.php?topic=478.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.chaosforge.org/index.php?topic=360.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tweettunnel.com/epyoncf ...'
b' |MSG| Scraping https://ar.whotwi.com/epyoncf/tweets/hashtag/GDC18 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pl.linkedin.com/in/kornelkisielewicz ...'
b' |MSG| Scraping https://blog.roguetemple.com/category/7drl/ ...'
b' |MSG| Scraping https://ja.whotwi.com/epyoncf/tweets/user/epyoncf ...'
b' |MSG| Scraping http://allthetropes.wikia.com/wiki/Doom_the_Roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.tomshardware.com/forum/65659-13-afterlife-memorial-files ...'
b' |MSG| Scraping https://ar.whotwi.com/epyoncf/tweets/user/raiganburns ...'
b' |MSG| Found article'
b' |MSG| Scraping https://drl.chaosforge.org/articles/27/doomrl-0993-released ...'
b' |MSG| Scraping http://www.tomshardware.com/forum/65340-13-doomrl/page-2 ...'
b' |MSG| Scraping https://ja.whotwi.com/epyoncf/tweets/user/GridSageGames ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/company/chaosforge/news/after-legal-threat-doomrl-is-now-drl-and-open-source ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikes/comments/5bo4ld/jupiter_hell_successor_to_doom_the_roguelike_is/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://drl.chaosforge.org/articles/24/phobos-times-issue-6-april ...'
b' |MSG| Found article'
b' |MSG| Scraping https://doom.chaosforge.org/articles/32/doomrl-0996-released ...'
b'!!FAIL!! Failed to load https://doom.chaosforge.org/articles/32/doomrl-0996-released'
HTTPSConnectionPool(host='doom.chaosforge.org', port=443): Max retries exceeded with url: /articles/32/doomrl-0996-released (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://gaming.stackexchange.com/questions/60890/whats-a-good-strategy-for-defeating-the-cyberdemon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tvtropes.org/pmwiki/pmwiki.php/Videogame/DoomTheRogueLike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/company/chaosforge/news/bethesda-parent-zenimax-hits-doomrl-the-doom-roguelike-with-takedown-notice ...'
b' |MSG| Found article'
Name Blast Tactics
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dto.github.com/notebook/blast.html
Status alpha
Released 2009/04/04
Updated 1000/00/00
Developer David O'Toole
Theme sci-fi
Influences NaN
Name: 52, dtype: object
http://duckduckgo.com/html/?q=%22Blast%20Tactics%22%20AND%20David%20O%27Toole%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://mobilemonkey.com/blog/2018/08/messenger-chat-blast-tactics ...'
b' |MSG| Scraping http://subsetgames.com/forum/viewtopic.php?t=2045 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rebrn.com/re/blast-tactics-a-rogue-like-game-in-common-lisp-by-david-otoole-2255390/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefaqs.gamespot.com/psp/950187-tales-of-the-world-radiant-mythology-2/faqs/57278 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://launchpad.net/rlx/+announcement/3756 ...'
b' |MSG| Scraping https://apkdom.com/hl-ru/download-game/192160-boom-blast-apk/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=TlewuhHI23w ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/Szetela/status/1028746367479500801 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=1297276696 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.goodmanga.net/tactics/chapter/5.2/4 ...'
b' |MSG| Scraping https://mirsofta.ru/soft/Blast-Tactics.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eventhubs.com/news/2012/feb/04/ultimate-marvel-vs-capcom-3-roundup-she-hulk-torpedo-relaunch-multi-character-combo-videos-and-repulsor-blast-tactics/ ...'
b' |MSG| Scraping http://www.cardgamedb.com/forums/index.php?/topic/32397-new-dengars-text/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://namapos.ru/video/09gE_7mi7mI ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tubtut.info/online/tactic+drills+feh ...'
b' |MSG| Scraping https://licenselab.com/track/blast-tactics ...'
b'!!FAIL!! Failed to load https://licenselab.com/track/blast-tactics'
HTTPSConnectionPool(host='licenselab.com', port=443): Max retries exceeded with url: /track/blast-tactics (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://talksport.com/football/347440/spend-ps250m-and-resort-lumping-it-ineffectual-fellaini-man-united-fans-blast-tactics-psv/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://wrathofheroes.wikia.com/wiki/Masteries ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.fm-base.co.uk/forum/share-download-fm-16-tactics/352985-christianeriksen-tactics-10.html ...'
b' |MSG| Scraping https://www.softwaregeek.com/download/luola_tactics.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.destructoid.com/--92904.phtml ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.comic-rocket.com/explore/bravoman/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://shoryuken.com/2012/02/03/umvc3-tricks-tech-12-13-repulsor-blast-tactics-traps/ ...'
b' |MSG| Scraping https://www.download32.com/blast-tactics-software.html ...'
b' |MSG| Found article'
Name Block Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.blockrogue.com/
Status stable
Released 2011/01/04
Updated 2011/01/04
Developer Buzz Monkey Software, LLC
Theme Puzzle, Sokoban, Light
Influences Sokoban, Adventures of Lolo
Name: 53, dtype: object
http://duckduckgo.com/html/?q=%22Block%20Rogue%22%20AND%20Buzz%20Monkey%20Software%20OR%20%20LLC%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://apkmodmirror.com/apk/com.buzzmonkey.blockrogue/block-rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sameapk.com/block-rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://block-rogue.droidinformer.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/review/block-rogue.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://techincidents.com/ikeymonitor-android-monitoring-app-review/ ...'
b' |MSG| Scraping https://apkgk.com/com.buzzmonkey.BlockRogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamer.com/games-troll-players-hacking-ban/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dlpcapps.com/block-rogue-on-pc-windows-mac/ ...'
b' |MSG| Scraping https://apksfull.com/block-rogue/com.buzzmonkey.BlockRogue ...'
b'!!FAIL!! Failed to load https://apksfull.com/block-rogue/com.buzzmonkey.BlockRogue'
HTTPSConnectionPool(host='apksfull.com', port=443): Max retries exceeded with url: /block-rogue/com.buzzmonkey.BlockRogue (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', '')],)",),))
b' |MSG| Scraping https://www.similarplay.com/buzz_monkey_software_llc/block_rogue/apps/com.buzzmonkey.BlockRogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.apksum.com/app/block-rogue/com.buzzmonkey.blockrogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://everipedia.org/wiki/Buzz_Monkey_Software/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://block-rogue.apk.black/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.148apps.com/reviews/block-rogue-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.li/25jcy ...'
b' |MSG| Found article'
b' |MSG| Scraping https://android.hipstore.mobi/app?Package=com.buzzmonkey.BlockRogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://phoneky.com/android-games/?id=n1n3058 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://block-rogue.soft112.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alchetron.com/Buzz-Monkey-Software ...'
b' |MSG| Found article'
b' |MSG| Scraping http://en.wikibedia.ru/wiki/Buzz_Monkey_Software ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eurogamer.net/games/block-rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.commonsensemedia.org/app-reviews/block-rogue ...'
b' |MSG| Scraping https://apk-s.com/com.buzzmonkey.BlockRogue/2894316-block+rogue-1.3/ ...'
b' |MSG| Found article'
Name Break Out Of Hareka's Underground
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://download.tuxfamily.org/boohu/index.html
Status stable
Released 2017/9/16
Updated 2018/07/25
Developer anaseto
Theme Fantasy
Influences Dungeon Crawl Stone Soup
Name: 54, dtype: object
http://duckduckgo.com/html/?q=%22Break%20Out%20Of%20Hareka%27s%20Underground%22%20AND%20anaseto%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://github.com/anaseto/boohu ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikes/comments/79im83/break_out_of_harekas_underground_version_04/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikedev/comments/70mhce/i_wrote_a_short_roguelike_named_boohu_in_go_and_i/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/anaseto/boohu/blob/master/README.md ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/boohu-0.5 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libraries.io/search.atom?keywords=%D0%98%D0%A1%2Cmvc%2Cgo&licenses=ISC&order=desc&sort=created_at ...'
b' |MSG| Found article'
b' |MSG| Scraping https://linuxfr.org/?a=basket&page=1662 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://linuxfr.org/?page=6&sessionextendercachebuster=1492182997836 ...'
b' |MSG| Found article'
Name Brogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sites.google.com/site/broguegame/
Status stable
Released 2009/11/27
Updated 2014/07/03
Developer Brian Walker
Theme Dungeon Crawl
Influences Rogue
Name: 55, dtype: object
http://duckduckgo.com/html/?q=%22Brogue%22%20AND%20Brian%20Walker%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://brogue.ru.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://brogue.roguelikelike.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://brogue.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://indiegames.com/2011/12/freeware_game_pick_brogue_bria.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rlgclub.ru/wiki/Brogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://small-games.info/?go=game&c=10&i=10057 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=PdCQ56UxVVE ...'
b' |MSG| Scraping https://sites.google.com/site/broguegame/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lgdb.org/game/brogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2011/10/interview-brian-walker-aka-pender.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alternativeto.net/software/brogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2015/07/28/how-do-roguelikes-generate-levels/433071087/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/sulai/Brogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/brogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.objectivegamereviews.com/brogue-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://en.wikibedia.ru/wiki/Brogue_(video_game) ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.turkaramamotoru.com/en/brogue-video-game-187310.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://inbrogue.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freegamesutopia.com/game/brogue/342/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.brogue.com.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/brogueforum/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quora.com/Why-is-Oxfords-not-Brogues?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lutris.net/games/brogue/ ...'
b' |MSG| Found article'
Name Bronze and Faith
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.bronzeandfaith.com/
Status unknown
Released 2013/00/00
Updated 2013/01/00
Developer Jeremy Flammang
Theme bronze age, mostly historical
Influences Unreal World, Dwarf Fortress
Name: 56, dtype: object
http://duckduckgo.com/html/?q=%22Bronze%20and%20Faith%22%20AND%20Jeremy%20Flammang%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.bronzeandfaith.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.bronzeandfaith.com/game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.bronzeandfaith.com/bronze-and-faith/ ...'
b' |MSG| Found article'
Name Bunltys Quest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Tyler Hasman
Theme Fantasy
Influences ADOM
Name: 57, dtype: object
http://duckduckgo.com/html/?q=%22Bunltys%20Quest%22%20AND%20Tyler%20Hasman%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name C: aft
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://smagac.github.io/
Status stable
Released 2017/10/02
Updated 2018/006/30
Developer Nicholas Hydock
Theme Fantasy
Influences Rogue, Monster Rancher, Atelier (series), Elona
Name: 58, dtype: object
http://duckduckgo.com/html/?q=%22C%3A%20aft%22%20AND%20Nicholas%20Hydock%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://steamkeysgames.net/free-steam-keys/adventure/4170-c-raft-free-steam-key.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamkeysgames.co/free-steam-keys/adventure/4170-c-raft-free-steam-key.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kickasskatcr.info/craft-t2891113.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bt-scene.cc/c-raft-tf5733011.html ...'
b'!!FAIL!! Failed to load https://bt-scene.cc/c-raft-tf5733011.html'
HTTPSConnectionPool(host='bt-scene.cc', port=443): Max retries exceeded with url: /c-raft-tf5733011.html (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0x114a585f8>, 'Connection to bt-scene.cc timed out. (connect timeout=10.1)'))
b' |MSG| Scraping https://steamdb.info/app/386710/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamerkong.com/games/adventure/craft ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/adventure/craft ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/craft.html ...'
b' |MSG| Scraping https://twitter.com/nhydock ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/storymode-a-game-about-crafting/review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/386710/Craft/ ...'
b' |MSG| Scraping https://www.steamkiwi.com/article=72045/a-year-in-review ...'
b' |MSG| Found article'
b' |MSG| Scraping http://timpfest.org/?author=94 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pinterest.com/pin/347762402455220210/ ...'
b' |MSG| Scraping https://alabama.travel/upcoming-events/search?utf8=%E2%9C%93&q=&commit=Search ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/title/tt3228904/fullcredits ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamspy.com/tag/Crafting ...'
b' |MSG| Found article'
b' |MSG| Scraping https://issuu.com/otmj/docs/2.9.17 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.onelook.com/pm/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pinterest.com/tylervanengen/my-life/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://issuu.com/shelbycountyreporter/docs/april2018_hooversmagazine_web ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.media-match.com/usa/media/profile-list.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://leadferret.com/directory/person/brian-johnson/9846975 ...'
b' |MSG| Scraping https://www.scribd.com/document/382275746/2018-06-21-St-Mary-s-County-Times ...'
b' |MSG| Found article'
Name Café Havoc
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ondras.github.io/cafe-havoc/
Status stable
Released 2016/03/14
Updated 2016/03/14
Developer Ondras
Theme Internal
Influences NaN
Name: 59, dtype: object
http://duckduckgo.com/html/?q=%22Caf%C3%A9%20Havoc%22%20AND%20Ondras%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://apkhome.net/cafe-recipes-stories-world-cooking-game-2018-9-1-mod-apk-data/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/ondras/cafe-havoc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/little-dragons-cafe-review-dragging-on/1900-6416973/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ondras.zarovi.cz/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://techniorg.com/cafe-panic-cooking-restaurant-released-on-android-pc-windows-mac/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=52CmEPyIfas ...'
b' |MSG| Found article'
b' |MSG| Scraping http://thesmartlocal.com/read/things-to-do-in-sydney ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theglobeandmail.com/opinion/article-canada-must-learn-from-our-history-and-stand-firm-on-nafta/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://atelier801.com/topic?f=6&t=856309 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/news/2018/09/guide_upcoming_nintendo_switch_games_and_accessories_for_september_and_october ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.valiance.gg/news/vision-gaming-and-team-throne-are-the-favorites-in-the-european-semi-finals?tags=gp-cops%2Chomepage%2Cc-ops-summer+season-2018 ...'
b' |MSG| Scraping https://ondras.github.io/cafe-havoc/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://greencrowasthecrowflies.blogspot.com/2018/09/response-to-zakharchenko-assassination.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sltrib.com/sports/byu-cougars/2018/09/02/cougars-say-they-are/ ...'
b' |MSG| Found article'
Name CalcRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://calcrogue.jimrandomh.org/
Status stable
Released 2005/00/00
Updated 2006/00/00
Developer Jim Babcock
Theme Fantasy
Influences NaN
Name: 60, dtype: object
http://duckduckgo.com/html/?q=%22CalcRogue%22%20AND%20Jim%20Babcock%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.scribd.com/document/194697349/Readme ...'
b' |MSG| Scraping http://www.tomshardware.com/forum/65857-13-article-building ...'
b' |MSG| Scraping https://www.downloadcollection.com/calcrogue_beta.htm ...'
b' |MSG| Scraping http://www.rpgcodex.net/forums/index.php?threads/calcrogue.3293/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ticalc.org/archives/files/fileinfo/260/26014.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.softpile.com/calcrogue/ ...'
b' |MSG| Scraping http://ftparmy.com/262401-calcrogue-beta.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.old-games.ru/forum/threads/rogue-like-rpg-rogaliki.34997/page-6 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/irldb/comment.php?id=CalcRogue ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/irldb/comment.php?id=CalcRogue'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /irldb/comment.php?id=CalcRogue (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://SoftOut.ru/default.asp?page=soft&id=11291 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://syrlandis.tripod.com/reviews.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.download32.com/calcrogue-beta-r69343.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forums.ag.ru/?board=ti_main&action=display&s=0&num=1110955010 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.spacegamejunkie.com/podcasts/sgj-podcast-226-roguelikes/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki.maemo.org/Roguelikes ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelike.weebly.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://calcg.org/cgi-bin/files.cgi?id=121 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ticalc.fc2web.com/news/index.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping https://calcrogue.updatestar.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eclipse.org/forums/index.php/t/41540/ ...'
b' |MSG| Scraping https://count.todaydown.com/s/search.php?k=jim+dandy&page=4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wssddc.com/links/games.html ...'
b' |MSG| Found article'
Name Caravan
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.ronware.org/reva/viewtopic.php?id=462
Status alpha
Released 2006/09/23
Updated 2007/01/16
Developer Colin MacIntyre
Theme Historical Adventure
Influences NaN
Name: 61, dtype: object
http://duckduckgo.com/html/?q=%22Caravan%22%20AND%20Colin%20MacIntyre%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Cardinal Quest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.cardinalquest.com/
Status stable
Released 2010/10/26
Updated 2011/12/06
Developer Ido
Theme Arcade
Influences Red-box D&D, Gauntlet, Desktop Dungeons, angband
Name: 62, dtype: object
http://duckduckgo.com/html/?q=%22Cardinal%20Quest%22%20AND%20Ido%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Cardinal Quest II
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://cardinalquest2.com/
Status stable
Released 2014/03/19
Updated 2015/02/27
Developer Randomnine
Theme Fantasy, Arcade
Influences Cardinal Quest, Diablo II, Dark Souls
Name: 63, dtype: object
http://duckduckgo.com/html/?q=%22Cardinal%20Quest%20II%22%20AND%20Randomnine%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Castle Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.amazon.com/gp/product/B0071BJX0Y
Status stable
Released 2012/01/24
Updated 2012/01/24
Developer Golden Hammer Software
Theme Fantasy
Influences Rogue
Name: 64, dtype: object
http://duckduckgo.com/html/?q=%22Castle%20Dungeon%22%20AND%20Golden%20Hammer%20Software%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Castle of the Winds
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.exmsft.com/~ricks/
Status stable
Released 1989/00/00
Updated 1993/00/00
Developer SaadaSoft
Theme Fantasy, Norse Mythology
Influences NaN
Name: 65, dtype: object
http://duckduckgo.com/html/?q=%22Castle%20of%20the%20Winds%22%20AND%20SaadaSoft%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Castle of the Winds Online
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.byond.com/games/Leptoon/COTWO
Status alpha
Released 2014/12/00
Updated 2014/00/00
Developer Leptoon
Theme Medieval
Influences Castle of the Winds for Windows 3.1
Name: 66, dtype: object
http://duckduckgo.com/html/?q=%22Castle%20of%20the%20Winds%20Online%22%20AND%20Leptoon%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name CastlevaniaRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://slashie.net/
Status beta
Released 2005/05/14
Updated 2010/02/23
Developer Slash
Theme Vampires
Influences Castlevania Series
Name: 67, dtype: object
http://duckduckgo.com/html/?q=%22CastlevaniaRL%22%20AND%20Slash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Cataclysm
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/Whales/Cataclysm
Status alpha
Released 2010/09/19
Updated 1000/00/00
Developer Whales
Theme Post-Apocalyptic, Zombies
Influences Fallout, Left 4 Dead, Half-Life, Deus Ex, Doom...
Name: 68, dtype: object
http://duckduckgo.com/html/?q=%22Cataclysm%22%20AND%20Whales%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Cataclysm: Dark Days Ahead
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://cataclysmdda.org/
Status alpha
Released 2013/01/02
Updated 2015/3/9
Developer Kevin Granade et. al.
Theme Post-apocalypse, Zombie, Sci-fi
Influences Cataclysm, Fallout, Left 4 Dead, Half-Life, De...
Name: 69, dtype: object
http://duckduckgo.com/html/?q=%22Cataclysm%3A%20Dark%20Days%20Ahead%22%20AND%20Kevin%20Granade%20et.%20al.%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.abware.net/index.pl?system=5 ...'
b' |MSG| Found article'
Name Catacombs of the Soulthief
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/catacombs-intro/
Status alpha
Released 2009/03/00
Updated 2009/03/21
Developer Derrick Creamer
Theme Fantasy
Influences NaN
Name: 70, dtype: object
http://duckduckgo.com/html/?q=%22Catacombs%20of%20the%20Soulthief%22%20AND%20Derrick%20Creamer%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
Name Cave of Epokothar
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://www.facebook.com/CaveOfEpokothar
Status stable
Released 2012/00/00
Updated 2012/02/11
Developer redwood646
Theme Fantasy
Influences NaN
Name: 71, dtype: object
http://duckduckgo.com/html/?q=%22Cave%20of%20Epokothar%22%20AND%20redwood646%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/eballot/CaveOfEpokothar ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.telecomfile.com/cave-of-epokothar-kindle-fire.html ...'
b'!!FAIL!! Failed to load http://www.telecomfile.com/cave-of-epokothar-kindle-fire.html'
HTTPConnectionPool(host='www.telecomfile.com', port=80): Max retries exceeded with url: /cave-of-epokothar-kindle-fire.html (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x114d28630>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known',))
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
Name Caverns of Xaskazien
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.codedread.com/games.php#COX
Status stable
Released 1995/00/00
Updated 2010/02/07
Developer Jeff Sinasac
Theme Fantasy
Influences NaN
Name: 72, dtype: object
http://duckduckgo.com/html/?q=%22Caverns%20of%20Xaskazien%22%20AND%20Jeff%20Sinasac%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://alchetron.com/Caverns-of-Xaskazien ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.old-games.com/download/3903/caverns-of-xaskazien ...'
b' |MSG| Found article'
b' |MSG| Scraping http://en.wikibedia.ru/wiki/Caverns_of_Xaskazien ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.pcgamescompendium.com/game/16491/caverns-of-xaskazien/ ...'
b' |MSG| Scraping http://dictionary.sensagent.com/caverns%20of%20xaskazien/en-en/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.classicgames.me/caverns-of-xaskazien.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.abandonware.ws/caverns_of_xaskazien.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.liquisearch.com/caverns_of_xaskazien ...'
b' |MSG| Found article'
b' |MSG| Scraping https://classicreload.com/caverns-of-xaskazien.html ...'
b' |MSG| Scraping https://virtua-sinner.itch.io/caverns-of-xaskazien-ii ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.codedread.com/games.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespedition.com/pc-games/role-playing-games/caverns-of-xaskazien/caverns-of-xaskazien-walkthrough ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.askgames.net/game/14213/caverns-of-xaskazien ...'
b' |MSG| Scraping https://archive.org/details/msdos_Caverns_of_Xaskazien_1995 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=5648.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=5648.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=5648.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://crpgaddict.blogspot.com/2013/02/game-85-dungeon-1979.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamewise.co/games/6693/Caverns-of-Xaskazien/Walkthrough ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=zmcN7xNpLgY ...'
b' |MSG| Scraping http://www.vgchartz.com/game/53012/caverns-of-xaskazien/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sockscap64.com/games/game/caverns-of-xaskazien/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wordaz.com/Xaskazien.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dmoztools.net/Games/Video_Games/Roleplaying/Rogue-like/Caverns_of_Xaskazien/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.giantbomb.com/caverns-of-xaskazien/3030-15593/ ...'
b' |MSG| Found article'
Name Caves of Qud
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.cavesofqud.com/
Status beta
Released 2010/05/05
Updated 2015/09/11
Developer Freehold Entertainment
Theme Post-Apocalyptic
Influences ADOM, Omega, Dune, Gamma World, and Gene Wolfe
Name: 73, dtype: object
http://duckduckgo.com/html/?q=%22Caves%20of%20Qud%22%20AND%20Freehold%20Entertainment%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.cavesofqud.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/333640/Caves_of_Qud/ ...'
b' |MSG| Scraping https://freeholdgames.itch.io/cavesofqud ...'
b' |MSG| Found article'
b' |MSG| Scraping http://cavesofqud.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://freeholdgames.com/Press/sheet.php?p=caves_of_qud ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamefreetop.net/2018/03/caves-of-qud-game.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gog.com/game/caves_of_qud ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/game/caves-of-qud/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moregameslike.com/caves-of-qud/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.50gameslike.com/games-like/caves-of-qud/ios ...'
b' |MSG| Found article'
b' |MSG| Scraping http://thegeekiary.com/caves-qud-gog-itch-io/54078 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/adventure/caves-of-qud ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/259680/discussions/1/451850849182540318/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=d7QhDCx3Xws ...'
b' |MSG| Found article'
b' |MSG| Scraping https://he-il.facebook.com/freeholdgames/ ...'
b' |MSG| Scraping https://rawg.io/games/caves-of-qud ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nullgame.com/indie-games/caves-of-qud ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/caves-of-qud ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/freeholdgames ...'
b' |MSG| Found article'
b' |MSG| Scraping https://caves-of-qud.en.softonic.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.topbestalternatives.com/caves-of-qud/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/caves-of-qud.html ...'
b' |MSG| Scraping https://www.qwant.com/game/caves-of-qud?l=pl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://games-scene.com/caves-of-qud/ ...'
b' |MSG| Scraping http://ultimacodex.com/2015/08/caves-of-qud-old-school-top-down-rpg-bit-of-an-ultima-vibe/ ...'
b'!!FAIL!! Failed to load http://ultimacodex.com/2015/08/caves-of-qud-old-school-top-down-rpg-bit-of-an-ultima-vibe/'
HTTPConnectionPool(host='ultimacodex.com', port=80): Read timed out. (read timeout=15.1)
Name Chasm Lords
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://chasmlords.com/
Status stable
Released 2017/00/00
Updated 2018/00/00
Developer Red Sky Forge
Theme Mythology, European
Influences WoTMUD, Moria, DaoC
Name: 74, dtype: object
http://duckduckgo.com/html/?q=%22Chasm%20Lords%22%20AND%20Red%20Sky%20Forge%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.gamepressure.com/download.asp?ID=68204 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://julibf.tumblr.com/post/177634962971/queen-sansa-stark-will-change-the-law-of ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmorpg.com/columns/shadows-awakening-review-fantastic-and-flawed-1000012985 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usgamer.net/articles/31-08-2018-no-mans-sky-freighters-guidehow-to-get-a-freighter-for-free-what-are-frigates-and-how-to-get-them-storage-command-room ...'
b' |MSG| Found article'
b' |MSG| Scraping https://chasmlords.itch.io/chasm-lords ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nexusmods.com/nomanssky/mods/834 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://laptopmedia.com/review/msi-gl63-8rc-review-msis-budget-friendly-gaming-solution/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamer.com/30-hidden-details-pokemon-gold-silver-real-fans-completely-missed/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/chasmlords ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=QHf8OePite4 ...'
b' |MSG| Scraping http://www.tolkien-music.com/discography.htm ...'
b'!!FAIL!! Failed to load http://www.tolkien-music.com/discography.htm'
HTTPConnectionPool(host='www.tolkien-music.com', port=80): Max retries exceeded with url: /discography.htm (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x11515c518>: Failed to establish a new connection: [Errno 61] Connection refused',))
b' |MSG| Scraping https://www.esquire.com/uk/food-drink/a22884317/what-were-eating-this-week-shrimp-crumpets-korean-feasts-and-game-samosas/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.skysports.com/football/news/11675/11488967/mauricio-pochettino-demands-more-from-tottenham-after-watford-loss ...'
b' |MSG| Found article'
Name Chengband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/[http://c...
Status beta
Released 2012/4/19
Updated 2012/04/19
Developer Cris Kousky, Dave Zhang, Andrew Levy
Theme Fantasy
Influences Hengband
Name: 75, dtype: object
http://duckduckgo.com/html/?q=%22Chengband%22%20AND%20Cris%20Kousky%20OR%20%20Dave%20Zhang%20OR%20%20Andrew%20Levy%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name ChessRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://chessrogue.sourceforge.net/
Status stable
Released 2005/05/30
Updated 2007/10/20
Developer Chris Morris
Theme NaN
Influences Rogue
Name: 76, dtype: object
http://duckduckgo.com/html/?q=%22ChessRogue%22%20AND%20Chris%20Morris%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Choose
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://choose.dianet.se/
Status beta
Released 2014/11/22
Updated 2014/12/02
Developer Cab
Theme Fantasy
Influences roguelikes in general
Name: 77, dtype: object
http://duckduckgo.com/html/?q=%22Choose%22%20AND%20Cab%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Choose your own CaveVenture
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://madzab.itch.io/choose-your-own-caveventure
Status beta
Released 2014/01/12
Updated 2014/04/20
Developer MadZab Gaming
Theme Horror, Exploration
Influences Collossal Cave Adventure
Name: 78, dtype: object
http://duckduckgo.com/html/?q=%22Choose%20your%20own%20CaveVenture%22%20AND%20MadZab%20Gaming%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Cinders
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://cinders.bergvin.com/
Status alpha
Released 2012/02/21
Updated 2012/2/21
Developer User:Tivec
Theme Post-apocalyptic
Influences Dwarf Fortress, UFO: Enemy Unknown
Name: 79, dtype: object
http://duckduckgo.com/html/?q=%22Cinders%22%20AND%20User%3ATivec%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name City of the Damned
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/gwathlobal/CotD
Status stable
Released 2017/01/07
Updated 2018/08/05
Developer Gwathlobal
Theme Christian mythology
Influences City of the Condemned
Name: 80, dtype: object
http://duckduckgo.com/html/?q=%22City%20of%20the%20Damned%22%20AND%20Gwathlobal%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Clarion
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://clariongame.wordpress.com/
Status alpha
Released 2011/12/10
Updated 2011/12/10
Developer Perpetuo Studios LLC
Theme Stone-age Fantasy
Influences Dwarf Fortress Adventure Mode, Elona, Diablo
Name: 81, dtype: object
http://duckduckgo.com/html/?q=%22Clarion%22%20AND%20Perpetuo%20Studios%20LLC%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name ClassicRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://oryxdesignlab.com/rogue/
Status stable
Released 2008/00/00
Updated 2008/10/1
Developer Donnie Russell
Theme Fantasy
Influences Rogue
Name: 82, dtype: object
http://duckduckgo.com/html/?q=%22ClassicRogue%22%20AND%20Donnie%20Russell%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Classic Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://oryxdesignlab.com/rogue/
Status major
Released 2013/00/00
Updated 2013/12/30
Developer Michael Toy, Glenn Wichman, Ken Arnold, Oryx D...
Theme Fantasy
Influences Dungeons & Dragons, Colossal Cave Adventure
Name: 83, dtype: object
http://duckduckgo.com/html/?q=%22Classic%20Rogue%22%20AND%20Michael%20Toy%20OR%20%20Glenn%20Wichman%20OR%20%20Ken%20Arnold%20OR%20%20Oryx%20Design%20Lab%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Cogmind
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gridsagegames.com/cogmind/
Status stable
Released 2015/05/19
Updated 2018/05/08
Developer Grid Sage Games (Kyzrati)
Theme Sci-Fi
Influences Battletech (very loosely)
Name: 84, dtype: object
http://duckduckgo.com/html/?q=%22Cogmind%22%20AND%20Grid%20Sage%20Games%20%28Kyzrati%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Collateral Souls
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://procrastinationsoftworks.com/wordpress/...
Status beta
Released 2015/09/07
Updated 2017/03/25
Developer jedislight
Theme Modern Fantasy, Afterlife, Angels vs Demons
Influences Demon Souls, XCom, DoomRL
Name: 85, dtype: object
http://duckduckgo.com/html/?q=%22Collateral%20Souls%22%20AND%20jedislight%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name College Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.roguelikedevelopment.org/archive/in...
Status stable
Released 1990/00/00
Updated 1000/00/00
Developer Rick Rusch/R & K Development
Theme fantasy
Influences Rogue
Name: 86, dtype: object
http://duckduckgo.com/html/?q=%22College%20Rogue%22%20AND%20Rick%20Rusch/R%20%26%20K%20Development%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Como el Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://comoelrogue.blogspot.com/
Status beta
Released 2011/12/12
Updated 2012/03/21
Developer researcho
Theme D&D
Influences NetHack, Angband
Name: 87, dtype: object
http://duckduckgo.com/html/?q=%22Como%20el%20Rogue%22%20AND%20researcho%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name CoreRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.roguelikeeducation.org/2.html
Status stable
Released 2013/10/24
Updated 2013/10/24
Developer Tectorum
Theme Fantasy
Influences Monster Caves
Name: 88, dtype: object
http://duckduckgo.com/html/?q=%22CoreRL%22%20AND%20Tectorum%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Cracks and Crevices
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://redmine.bloodycactus.com/projects/show...
Status alpha
Released 2007/02/24
Updated 2010/09/18
Developer Stu George
Theme Fantasy
Influences Underdark
Name: 89, dtype: object
http://duckduckgo.com/html/?q=%22Cracks%20and%20Crevices%22%20AND%20Stu%20George%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Craftband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/craftband/
Status alpha
Released 2009/04/10
Updated 2009/04/12
Developer Austin McDonald
Theme Fantasy
Influences Angband 3.1.0
Name: 90, dtype: object
http://duckduckgo.com/html/?q=%22Craftband%22%20AND%20Austin%20McDonald%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name crashRun
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://crashrun.org/
Status alpha
Released 2008/5/24
Updated 2010/3/21
Developer ywg.dana
Theme cyberpunk
Influences Angband, Nethack (in terms of RLs I play a lot)
Name: 91, dtype: object
http://duckduckgo.com/html/?q=%22crashRun%22%20AND%20ywg.dana%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Crossfire
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://crossfire.real-time.com/
Status stable
Released 1992/00/00
Updated 2014/04/05
Developer Frank Tore Johansen (original developer), Mark...
Theme Fantasy
Influences NetHack, Moria
Name: 92, dtype: object
http://duckduckgo.com/html/?q=%22Crossfire%22%20AND%20Frank%20Tore%20Johansen%20%28original%20developer%29%20OR%20%20Mark%20Wedel%20OR%20%20Rick%20Tanner%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Crossword Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.crossworddungeon.com/
Status stable
Released 2012/10/23
Updated 2014/05/09
Developer Ebyan Alvarez-Buylla (Nolithius)
Theme Fantasy
Influences Roguelikes, Crosswords
Name: 93, dtype: object
http://duckduckgo.com/html/?q=%22Crossword%20Dungeon%22%20AND%20Ebyan%20Alvarez-Buylla%20%28Nolithius%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name CryptRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://cryptmaster.free.fr/
Status alpha
Released 2007/00/00
Updated 2007/01/12
Developer Crypt (Vincent Primault)
Theme Fantasy
Influences Slash'EM,ADOM, Dungeon Master, Thief 1 & 2, HA...
Name: 94, dtype: object
http://duckduckgo.com/html/?q=%22CryptRL%22%20AND%20Crypt%20%28Vincent%20Primault%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Cryptband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status beta
Released 2010/04/20
Updated 2010/06/19
Developer Roger Norris
Theme Fantasy
Influences NaN
Name: 95, dtype: object
http://duckduckgo.com/html/?q=%22Cryptband%22%20AND%20Roger%20Norris%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://cryptband.podbean.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://angband.oook.cz/forum/showthread.php?t=3094 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=857.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=857.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=857.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alexvampire.wordpress.com/2016/01/24/roguelike-mega-collection-700-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://urlm.co/www.cryptband.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/iyzPQdRK ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.unsigned.com/crypt ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.securitychecks.co/www.cryptband.com ...'
Name CryptoRl
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://randomtower.blogspot.it/2015/08/cryptor...
Status stable
Released 2015/04/28
Updated 2015/04/28
Developer Gornova
Theme Fantasy
Influences NaN
Name: 96, dtype: object
http://duckduckgo.com/html/?q=%22CryptoRl%22%20AND%20Gornova%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://randomtower.blogspot.com/ ...'
b' |MSG| Scraping https://gamejolt.com/games/cryptorl2/106921/devlog ...'
b' |MSG| Scraping https://github.com/Gornova/CryptoRl2 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.java-gaming.org/index.php?;topic=36835.0 ...'
b' |MSG| Scraping http://slick.ninjacave.com/forum/viewtopic.php?p=37489 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/cryptorl-2/downloads/cryptorl2-v09 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/cryptorl-2 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4788.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4788.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4788.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://devhub.io/developer/Gornova ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=51321.0 ...'
b' |MSG| Scraping https://libraries.io/github/Gornova/CryptoRl2 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tower791.rssing.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://yaelp.com/s_barscryptor+v3.0.0.3/p30/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.programcreek.com/java-api-examples/?code=Gornova/CryptoRl2/CryptoRl2-master/src/main/java/it/crypto2/game/MenuWorld.java ...'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.pro-trux.com/w_barscryptor_4/ ...'
b' |MSG| Scraping http://api.256file.com/cryptorl2.exe/en-download-444795.html ...'
b' |MSG| Scraping http://domain-kb.com/www/cryptorl.net ...'
b' |MSG| Scraping http://safedomains.pro/cryptory.com ...'
b' |MSG| Found article'
Name CryptoRl2
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://randomtower.blogspot.it/2016/04/cryptor...
Status stable
Released 2015/11/07
Updated 2016/04/04
Developer Gornova
Theme Fantasy
Influences NaN
Name: 97, dtype: object
http://duckduckgo.com/html/?q=%22CryptoRl2%22%20AND%20Gornova%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://github.com/Gornova/CryptoRl2 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.java-gaming.org/index.php?;topic=36835.0 ...'
b' |MSG| Scraping https://randomtower.blogspot.com/ ...'
b' |MSG| Scraping https://gamejolt.com/games/cryptorl2/106921 ...'
b' |MSG| Scraping http://slick.ninjacave.com/forum/viewtopic.php?p=37489 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/cryptorl-2 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4788.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4788.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4788.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://devhub.io/developer/Gornova ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=51321.0 ...'
b' |MSG| Scraping https://libraries.io/github/Gornova/CryptoRl2 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tower791.rssing.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.programcreek.com/java-api-examples/?code=Gornova/CryptoRl2/CryptoRl2-master/src/main/java/it/crypto2/game/MenuWorld.java ...'
b' |MSG| Scraping http://yaelp.com/s_barscryptor/p20/ ...'
b' |MSG| Scraping http://api.256file.com/cryptorl2.exe/en-download-444795.html ...'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
Name Cthangband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://gurbintrollgames.wordpress.com/cthangb...
Status stable
Released 1998/00/00
Updated 2018/08/06
Developer Dean Anderson, previously David Thornley
Theme Horror/Fantasy
Influences ZAngband 2.1.0e
Name: 98, dtype: object
http://duckduckgo.com/html/?q=%22Cthangband%22%20AND%20Dean%20Anderson%20OR%20%20previously%20David%20Thornley%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://angband.oook.cz/forum/showthread.php?t=7259 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thangorodrim.net/cthangband.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://orthanc.chat.ru/variants.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://everything2.com/title/Cthangband ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.oldgamesfinder.com/?m=2&q=Cthangband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4595.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4595.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4595.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://gurbintrollgames.wordpress.com/cthangband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://cdimage.debian.org/mirror/archive/ftp.sunet.se/pub/games/Angband/Variant/CthAngband/Cthangband-312.txt ...'
b' |MSG| Scraping https://gamia.gamepedia.com/Roguelike_video_games ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/RoguelikeMegaCollection2015_201708 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=49H6fhdFDb4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.fo/rdP10 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ftp.gnome.org/mirror/archive/ftp.sunet.se/pub/games/Angband/Variant/CthAngband/Cthangband-401.txt ...'
b' |MSG| Scraping https://tvtropes.org/pmwiki/pmwiki.php/VideoGame/Angband ...'
b' |MSG| Found article'
b' |MSG| Scraping http://muuttuja.org/tomenet/monsters/source.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://search-id.com/d/www.visi.com/url/2170286 ...'
b' |MSG| Found article'
Name Cult: Awakening Of The Old Ones
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://cultrl.wordpress.com/
Status alpha
Released 2013/00/00
Updated 2012/00/00
Developer David Hagar
Theme Fantasy, Lovecraftian, Freeform, Procedurally-...
Influences Dwarf Fortress, Darklands, Elder Scrolls, many...
Name: 99, dtype: object
http://duckduckgo.com/html/?q=%22Cult%3A%20Awakening%20Of%20The%20Old%20Ones%22%20AND%20David%20Hagar%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.kickstarter.com/projects/dhagar/cult-awakening-of-the-old-ones ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/cultawakening/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/empyrearl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/2013-preview/9/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://n4g.com/news/1349131/cult-awakening-a-successful-kickstarter-from-2012-has-ceased-development ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pinterest.com/pin/236157574180187031/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pinterest.com/pin/179158891398626057/ ...'
Name Cursed Dungeons
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://droidgnome.blogspot.com/
Status beta
Released 2012/05/22
Updated 2012/05/22
Developer droidgnome
Theme Fantasy
Influences NaN
Name: 100, dtype: object
http://duckduckgo.com/html/?q=%22Cursed%20Dungeons%22%20AND%20droidgnome%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://bloodborne.wiki.fextralife.com/Chalice+Dungeon ...'
b' |MSG| Scraping https://www.bloodborne-wiki.com/2017/11/save-editing-chalice-dungeons.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://droidgnome.blogspot.com/2012/06/cursed-dungeons-010-release.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.belloflostsouls.net/2018/09/rpg-in-an-age-undreamed-of-ancient-ruins-and-cursed-cities-await.html ...'
b'!!FAIL!! Failed to load http://www.belloflostsouls.net/2018/09/rpg-in-an-age-undreamed-of-ancient-ruins-and-cursed-cities-await.html'
HTTPConnectionPool(host='www.belloflostsouls.net', port=80): Read timed out. (read timeout=15.1)
b' |MSG| Scraping https://www.reddit.com/r/bloodborne/comments/35hazm/when_to_start_doing_chalice_dungeons/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kotaku.com/from-pyrotechnics-to-quiet-confrontations-harry-potter-1828746379 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=933PIrfRkCM ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hypable.com/harry-potter-cursed-child-australian-cast/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/playlist?list=PL_gTDgSwkmpxxRoLm017j9Ua0uvHvElYr ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.belloflostsouls.net/2018/09/conan-ancient-ruins-cursed-cities-out-now-from-modiphius.html ...'
b'!!FAIL!! Failed to load http://www.belloflostsouls.net/2018/09/conan-ancient-ruins-cursed-cities-out-now-from-modiphius.html'
HTTPConnectionPool(host='www.belloflostsouls.net', port=80): Read timed out. (read timeout=15.1)
b' |MSG| Scraping https://tf2maps.net/threads/cursed-cove.37656/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dungeons.wikia.com/wiki/Category:Cursed ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/stage/2018/sep/03/harry-potter-and-the-cursed-childs-australian-cast-to-include-gyton-grantley ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefaqs.gamespot.com/boards/805577-bloodborne/71653624 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.enagames.com/game-walkthrough/mirchigames-find-my-carrot-walkthrough ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.smh.com.au/entertainment/theatre/next-generation-of-wizards-harry-potter-and-the-cursed-child-cast-revealed-20180831-p5010x.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://guidescroll.com/2015/04/bloodborne-chalice-dungeon-faq/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/news/2018/09/guide_upcoming_nintendo_switch_games_and_accessories_for_september_and_october ...'
b'!!FAIL!! Failed to load http://www.nintendolife.com/news/2018/09/guide_upcoming_nintendo_switch_games_and_accessories_for_september_and_october'
HTTPConnectionPool(host='www.nintendolife.com', port=80): Read timed out.
b' |MSG| Scraping http://www.crypticcomet.com/blog/?p=468 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pottermore.com/news/cast-for-the-australian-production-of-harry-potter-and-the-cursed-child-revealed ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=2239.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=2239.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=2239.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://dot-of-roleplay.forumotion.com/t5-cremon-cursed-dungeons-broken-beliefs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.minigames.com/games/cursed_dungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping http://impressivent.com/dungeons-dancers/index.html ...'
b' |MSG| Scraping http://www.totemtribe.com/talk/spoiler-survey-to-those-who-have-beaten-several-dungeons/ ...'
b' |MSG| Found article'
Name CutlassRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://initrl.github.com/CutlassRL
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer init
Theme Fantasy
Influences NetHack, Angband
Name: 101, dtype: object
http://duckduckgo.com/html/?q=%22CutlassRL%22%20AND%20init%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.openhub.net/p/CutlassRL ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/laserbat/CutlassRL ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.escapegames24.com/2018/09/nsr-easel-room-escape.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eventhubs.com/news/2018/aug/31/netherrealm-studios-working-new-game-and-theres-good-chance-its-mortal-kombat-11-which-characters-do-you-want-see-return/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.oss.io/p/initrl/CutlassRL ...'
Name CyberQuest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://www.mediafire.com/?eb2uac1de8nv117%20d...
Status info
Released 2014/03/14
Updated 2014/03/14
Developer Badscribbler intothelabyrinthkeeper@gmail.com
Theme Cyber, Party Based
Influences Older Console RPG, Dark Hersey, Splash of Brav...
Name: 102, dtype: object
http://duckduckgo.com/html/?q=%22CyberQuest%22%20AND%20Badscribbler%20intothelabyrinthkeeper%40gmail.com%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name CyberRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status alpha
Released 2008/07/04
Updated 2009/5/24
Developer Scautura
Theme Sci-fi/Cyberpunk
Influences crashRun, Crawl, CP2020
Name: 103, dtype: object
http://duckduckgo.com/html/?q=%22CyberRogue%22%20AND%20Scautura%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=13.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=13.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=13.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://archive.li/eml9r ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/retropunch/CyberRogue/blob/master/CorporateHistory.txt ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bay12forums.com/smf/index.php?topic=137403.0 ...'
b' |MSG| Scraping https://rpggeek.com/rpgitem/43903/cyberrogues ...'
b' |MSG| Found article'
b' |MSG| Scraping http://roguecentral.org/doryen/forum/index.php?topic=110.0 ...'
b' |MSG| Scraping https://roguelikedeveloper.blogspot.com/2009/01/full-results-for-ascii-dreams-roguelike.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://quizlet.com/112488163/introduction-to-security-chapter-1-flash-cards/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sayko2k20.wordpress.com/2015/10/30/cyberspace-completo-a-descargar/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.drivethrurpg.com/product/88435/CyberRogues ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.webwiki.com/cyber-rogue.net ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamesetwatch.com/2009/07/column_play_the_python_strikes.php ...'
b' |MSG| Scraping https://www.quinrogers.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://urlm.co/www.cyber-rogue.net ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelike.blog.hu/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://paizo.com/products/btpy8oio?Rolemaster-Cyberspace-RPG-CyberRogues ...'
b' |MSG| Found article'
b' |MSG| Scraping https://domain-status.com/www/cyberrogue.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bibliotecario31.rssing.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dailyranking.org/cyberrogue.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://registrydb.com/cyberrogue.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.iswebsitedownnow.com/d/cyberrogue.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rankchart.net/site/cyberrogue.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://justdropped.com/drops/110412com.html ...'
Name Cyberpunk Angband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.angband.pwp.blueyonder.co.uk/cy.html
Status beta
Released 2002/01/08
Updated 2002/01/08
Developer Anres Zanzani
Theme Cyberpunk/Sci-fi
Influences Angband 2.9.3
Name: 104, dtype: object
http://duckduckgo.com/html/?q=%22Cyberpunk%20Angband%22%20AND%20Anres%20Zanzani%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.tvwiki.tv/wiki/List_of_Angband_variants ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thangorodrim.net/variants.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.oneangrygamer.net/2018/09/weekly-recap-sept-1st-google-shadow-bans-cyberpunk-2077-and-arkane-studios-culture-clash/67960/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.statemaster.com/encyclopedia/List-of-Angband-variants ...'
b' |MSG| Found article'
Name D11-Angband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.angband.pwp.blueyonder.co.uk/d11.html
Status beta
Released 1999/00/00
Updated 2002/01/14
Developer Stefan 'Dunkelelf' Jurisch
Theme Fantasy
Influences Angband 2.9.3
Name: 105, dtype: object
http://duckduckgo.com/html/?q=%22D11-Angband%22%20AND%20Stefan%20%27Dunkelelf%27%20Jurisch%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name DND
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.digital-eel.com/files/dndpage_files...
Status stable
Released 1976/77/00
Updated 1000/00/00
Developer Daniel M. Lawrence
Theme Fantasy
Influences Dungeons and Dragons
Name: 106, dtype: object
http://duckduckgo.com/html/?q=%22DND%22%20AND%20Daniel%20M.%20Lawrence%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name DUMUZID
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://humbit.com/dumuzid
Status alpha
Released 2015/03/14
Updated 2015/03/17
Developer Jeremiah Reid
Theme abstract, Sumerian
Influences Katamari Damacy, Osmos
Name: 107, dtype: object
http://duckduckgo.com/html/?q=%22DUMUZID%22%20AND%20Jeremiah%20Reid%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name DaJAngband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sites.google.com/site/dajangbandwebsite...
Status beta
Released 2007/12/13
Updated 2012/04/12
Developer will_asher
Theme Fantasy
Influences Angband 3.0.9e
Name: 108, dtype: object
http://duckduckgo.com/html/?q=%22DaJAngband%22%20AND%20will_asher%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Daedlyflazh
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://commodore64.republika.pl/daedly.html
Status beta
Released 2011/00/00
Updated 2012/00/00
Developer freekE, Verdin, Radzio
Theme Post Nuclear
Influences Adom, Fallout
Name: 109, dtype: object
http://duckduckgo.com/html/?q=%22Daedlyflazh%22%20AND%20freekE%20OR%20%20Verdin%20OR%20%20Radzio%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dance of Death
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.nolithius.com/dod
Status alpha
Released 2010/2/9
Updated 2010/09/19
Developer Ebyan Alvarez-Buylla (Nolithius)
Theme Fantasy
Influences ADOM, UnReal World
Name: 110, dtype: object
http://duckduckgo.com/html/?q=%22Dance%20of%20Death%22%20AND%20Ebyan%20Alvarez-Buylla%20%28Nolithius%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name DarkHall
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://wiz.morphball.net/darkhall/
Status beta
Released 2009/05/31
Updated 2009/07/21
Developer Team D.H
Theme Fantasy
Influences Wizardry
Name: 111, dtype: object
http://duckduckgo.com/html/?q=%22DarkHall%22%20AND%20Team%20D.H%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Darkfire RPG
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://darkfire-rpg.com/
Status stable
Released 2012/11/01
Updated 2017/09/07
Developer User:Fiorel
Theme Fantasy
Influences Crossfire, Daimonin, Final Fantasy 1/2, Diablo
Name: 112, dtype: object
http://duckduckgo.com/html/?q=%22Darkfire%20RPG%22%20AND%20User%3AFiorel%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dawn of the Dead Roguelike III
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://blogs.gamefilia.com/erikadams/16-07-201...
Status stable
Released 2009/00/00
Updated 2010/07/15
Developer ErikAdams
Theme Horror
Influences DoomRL
Name: 113, dtype: object
http://duckduckgo.com/html/?q=%22Dawn%20of%20the%20Dead%20Roguelike%20III%22%20AND%20ErikAdams%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dead Man Walking
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.caffeineoverdose.me/
Status stable
Released 2013/03/01
Updated 2013/09/01
Developer Andrew Wright (aka roocey)
Theme Dark Fantasy
Influences NaN
Name: 114, dtype: object
http://duckduckgo.com/html/?q=%22Dead%20Man%20Walking%22%20AND%20Andrew%20Wright%20%28aka%20roocey%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Death of the Corpse Wizard
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://procyonic.org/corpseWizard
Status alpha
Released 2014/04/27
Updated 2014/04/30
Developer Vincent Toups
Theme Fantasy
Influences Mystery Dungeon: Shiren the Wanderer , Dark Souls
Name: 115, dtype: object
http://duckduckgo.com/html/?q=%22The%20Death%20of%20the%20Corpse%20Wizard%22%20AND%20Vincent%20Toups%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Decker
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://web.archive.org/web/20110926115405/htt...
Status stable
Released 2002/00/00
Updated 2004/00/00
Developer Shawn Overcash
Theme Cyberpunk
Influences Shadowrun tabletop RPG
Name: 116, dtype: object
http://duckduckgo.com/html/?q=%22Decker%22%20AND%20Shawn%20Overcash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Deliantra
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.deliantra.net/
Status stable
Released 2006/05/30
Updated 2017/06/01
Developer The Deliantra Development Team, Marc Lehmann, ...
Theme Fantasy
Influences Nethack, Moria
Name: 117, dtype: object
http://duckduckgo.com/html/?q=%22Deliantra%22%20AND%20The%20Deliantra%20Development%20Team%20OR%20%20Marc%20Lehmann%20OR%20%20Robin%20Redeker%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name DemiseRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sites.google.com/site/corremn/
Status alpha
Released 2006/00/00
Updated 1000/00/00
Developer Corremn
Theme Fantasy
Influences everything
Name: 118, dtype: object
http://duckduckgo.com/html/?q=%22DemiseRL%22%20AND%20Corremn%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Demon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://demon.ferretdev.org/
Status alpha
Released 2014/05/23
Updated 2018/7/3
Developer Herbie Piland (FerretDev)
Theme Multiverse
Influences Shin Megami Tensei, Dungeon Crawl Stone Soup, ...
Name: 119, dtype: object
http://duckduckgo.com/html/?q=%22Demon%22%20AND%20Herbie%20Piland%20%28FerretDev%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Demon's Sword
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://cannibalcat.itch.io/demons-sword
Status stable
Released 2016/00/00
Updated 2016/00/00
Developer Cannibal Cat Software
Theme Fantasy
Influences Telengard, DND
Name: 120, dtype: object
http://duckduckgo.com/html/?q=%22Demon%27s%20Sword%22%20AND%20Cannibal%20Cat%20Software%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://twitter.com/CannibalCatSoft ...'
b' |MSG| Found article'
b' |MSG| Scraping https://newretrogames.wordpress.com/tag/fantasy/page/5/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/news/post/518256108455613208/?insideModal=1 ...'
Name Demon Tactic
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://demon-tactic.com/
Status alpha
Released 2014/007/08
Updated 2016/00/00
Developer Anohin Denis
Theme Fantasy
Influences Adom, Drakefire Chasm
Name: 121, dtype: object
http://duckduckgo.com/html/?q=%22Demon%20Tactic%22%20AND%20Anohin%20Denis%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://demon-tactic.com/ ...'
b' |MSG| Scraping https://www.moddb.com/engines/demon-tactic-engine ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=BcwEp4wZjj8 ...'
b' |MSG| Scraping https://reviewfinch.com/p/Demon-Tactic-Knee-Shin-and-Elbow-Guards-BMX-Mountain-Bike-Motorcycle-Black-Knee-Elbow-L-XL/129014/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.how-to-diy.org/cUu6sFiXmCW9TZ/Demon-Tactic-roguelike-game-development-012.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmorpg.com/columns/shadows-awakening-review-fantastic-and-flawed-1000012985 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.relatedwebsite.co/www.demon-tactic.com ...'
b' |MSG| Scraping http://kakproyti.ru/video/demon-tactic-roguelike-game-development-012.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://demon-tactic.wikia.com/wiki/Scenarios ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.wesnoth.org/viewtopic.php?t=43041 ...'
b' |MSG| Scraping https://www.amazon.com/Demon-Tactic-Guards-Mountain-Motorcycle/dp/B06X15TFZ8 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://demonsnow.com/store/Demon%20Shield%20Knee-Shin%20Guards ...'
b' |MSG| Found article'
b' |MSG| Scraping http://moya-muzyka.ru/cinema/fantastika/demon-tactic-roguelike-game-development-013.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://brfilm.net/v-demon-tactic-roguelike-game-development-016-VvFaZD5WGl4.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.cgpbooks.co.uk/interactive_tips_demon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.slidedb.com/company/demon-tactic ...'
b' |MSG| Found article'
b' |MSG| Scraping https://picclick.com/Demon-Tactic-Knee-Shin-and-Elbow-Guards-BMX-Mountain-162986983991.html ...'
b' |MSG| Scraping http://xemtop.com/category/%D1%80%D0%BE%D0%B3%D0%B0%D0%BB%D0%B8%D0%BA%D0%B8-%D0%B8%D0%B3%D1%80%D1%8B?p=13 ...'
b' |MSG| Scraping http://m.androidmafia.ru/video/6s8hc1gsvxg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tvclip.biz/rev/art+games+lp+demon+souls/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plclip.com/rev/roguelike+game+design/ ...'
b' |MSG| Scraping http://gamemux.com/games/14311/demon-tactic.html ...'
b' |MSG| Scraping http://mc12.ru/docs/5hc6lis.php?czib=demon-roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://uzclip.net/rev/demon+soul/ ...'
b' |MSG| Found article'
Name Descension
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://descensionthegame.com/
Status alpha
Released 2010/00/00
Updated 2011/00/00
Developer Arkytoothis
Theme Fantasy
Influences Dungeon Crawl Stone Soup
Name: 122, dtype: object
http://duckduckgo.com/html/?q=%22Descension%22%20AND%20Arkytoothis%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=P5iA4V4Mlds ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dictionary.com/browse/descension ...'
b' |MSG| Found article'
b' |MSG| Scraping https://descension.bandcamp.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/descension ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamemakergames.com/archive/eve-of-descension ...'
b' |MSG| Found article'
b' |MSG| Scraping http://descensiondesigns.com/ ...'
b' |MSG| Scraping https://www.moddb.com/games/descension/downloads/descension ...'
b' |MSG| Found article'
b' |MSG| Scraping http://descension.wordmeanings.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/CoheedAndCambria-TheAftermanDescension ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.old-games.com/download/8546/untima-ix-descension ...'
b' |MSG| Scraping https://genius.com/albums/Coheed-and-cambria/The-afterman-descension ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki.guildwars2.com/wiki/Descension ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/boards/threads/descension-indie-game.452537198/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://fr.wiktionary.org/wiki/descension ...'
b' |MSG| Found article'
b' |MSG| Scraping https://azlyrics.biz/medeia-descension-lyrics/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefreedictionary.com/descension ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.tlyrics.net/song/2d/medeia-descension/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.publicartfund.org/view/exhibitions/6176_anish_kapoor_descension ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.songlyrics.com/news/listing-the-plot-from-coheed-and-cambrias-the-afterman-descension/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://the-descension.livejournal.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://coheed.wikia.com/wiki/The_Afterman:_Descension ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wordgamehelper.com/word/descension ...'
b' |MSG| Scraping https://www.classicgames.me/untima-ix-descension.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.discogs.com/Coheed-And-Cambria-The-Afterman-Descension-/release/4266579 ...'
b' |MSG| Found article'
Name Dreamhack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/dreamhack/
Status alpha
Released 2009/09/13
Updated 2009/10/31
Developer elig
Theme Abstract
Influences Nethack
Name: 123, dtype: object
http://duckduckgo.com/html/?q=%22Dreamhack%22%20AND%20elig%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://dreamhack.com/DigitalPass ...'
b' |MSG| Scraping http://navi.gg/en/read/text/2027-dreamhack-masters-stockholm-victory-vs-ghost-gaming ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/articles/dreamhack-summer-dota-2-post-mortem/1100-6437956/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=L7Kn91ixAk0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sport-express.ru/cybersport/news/msl-stal-samym-cennym-igrokom-dreamhack-masters-stockholm-2018-po-versii-hltv-org-1452936/8082737884/ ...'
b' |MSG| Scraping https://www.hltv.org/forums/threads/1859564/dreamhack-quarter ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.teamliquid.net/blogs/289839-dreamhack-winter-post-mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dreamhack.devpost.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dotesports.com/general/news/tsm-post-mortem-na-lcs-20431 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/dreamhack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dbltap.com/posts/5365873-video-genji-s-dash-can-kill-post-mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dreamhack.se/dhs17/esports/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/Dreamhack/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nsg.gg/2016/07/cheesadelphia-3-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pubg.gamepedia.com/DreamHack_Summer_2017 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.esportsearnings.com/leagues/109-dreamhack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/DreamHackFG/ ...'
b' |MSG| Scraping http://adanai.com/esports/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dreamhak.fun/ ...'
b' |MSG| Scraping http://www.dreamhack.dk/ ...'
b' |MSG| Scraping https://www.pcgamer.com/rog-returns-to-dreamhack-2017-bigger-and-better/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hirezstudios.com/dreamhack-2017/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dreamhack.org/ ...'
b' |MSG| Scraping https://www.moddb.com/games/cefore/news/blog-post-3-dreamhack-and-more ...'
b' |MSG| Found article'
Name Diablo
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.blizzard.com/diablo/
Status stable
Released 1997/00/00
Updated 1997/00/00
Developer Blizzard
Theme Fantasy
Influences NetHack, Moria, Angband
Name: 124, dtype: object
http://duckduckgo.com/html/?q=%22Diablo%22%20AND%20Blizzard%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=VscdPA6sUkc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.diabloii.net/blog/comments/diablo-3-post-mortem-jay-wilson-pt1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.diabloii.net/blog/comments/diablo-3-post-mortem-with-jay-wilson-part-five ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/diablo-designer-david-breviks-full-gdc-post-mortem-is-now-online/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/view/feature/131533/postmortem_blizzards_diablo_ii.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamedevhistory.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://diablo.gamepedia.com/Blizzard_Entertainment ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/blizzard-new-game-diablo-4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.MacObserver.com/tmo/article/Diablo2_Game_Developement_Post_Mortem ...'
b' |MSG| Scraping https://www.gamebyte.com/blizzard-has-confirmed-a-new-diablo-game-is-coming/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/news/2018/09/diablo_iii_on_switch_will_include_amiibo_support_according_to_blizzard_developer ...'
b'!!FAIL!! Failed to load http://www.nintendolife.com/news/2018/09/diablo_iii_on_switch_will_include_amiibo_support_according_to_blizzard_developer'
HTTPConnectionPool(host='www.nintendolife.com', port=80): Read timed out. (read timeout=15.1)
b' |MSG| Scraping https://us.battle.net/forums/en/d3/topic/7415795753 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.engadget.com/2016/12/28/diablo-20-year-anniversary-game-events/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.oldpcgaming.net/early-history-of-blizzard-entertainment/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmorpg.com/diablo-3/columns/does-blizzard-have-a-secret-diablo-1000011299 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://us.blizzard.com/pt-br/games/d3/ ...'
b' |MSG| Scraping https://www.reddit.com/r/Diablo/comments/4jijwt/diablo_3_expansion_2_versus_diablo_4_new_diablo/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://arstechnica.com/gaming/2016/03/post-mortem-ms-pac-man-diablo-dissected-by-their-original-devs/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kotaku.com/how-blizzard-saved-diablo-iii-from-disaster-1797427650 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://liquidon.net/blog/2017/03/game-dev-conference-a-classic-game-post-mortem-to-doom-and-diablo/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://venturebeat.com/2016/03/19/how-diablo-found-inspiration-in-hockey-star-wars-and-x-com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://diablo.wikia.com/wiki/Blizzard_Entertainment ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.svg.com/114578/blizzard-wont-release-diablo-4/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcinvasion.com/diablo-3-post-mortem-jay-wilson/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.cinemablend.com/games/What-Could-Diablo-Project-From-Blizzard-77567.html ...'
b' |MSG| Found article'
Name Diggr
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://diggr.name/
Status beta
Released 2011/08/12
Updated 2012/2/25
Developer tkatchev
Theme Eclectic
Influences NetHack
Name: 125, dtype: object
http://duckduckgo.com/html/?q=%22Diggr%22%20AND%20tkatchev%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://diggr.en.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://diggr.link/events/diggr-workshop-september-2017/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bay12forums.com/smf/index.php?topic=127260.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://yepdownload.com/diggr ...'
b'!!FAIL!! Failed to load https://yepdownload.com/diggr'
HTTPSConnectionPool(host='yepdownload.com', port=443): Max retries exceeded with url: /diggr (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://diggr.name/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://diggr.co/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/wearediggr/?ref=py_c ...'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.archiuk.android.diggruk&hl=ru ...'
b' |MSG| Found article'
b' |MSG| Scraping http://diggr.de/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=TxamY1FPPlY ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.culingtec.uni-leipzig.de/ESU_C_T/node/887 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dynadiggr.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.digital-documents.co.uk/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://drewolson.github.io/diggr/ ...'
b' |MSG| Scraping https://www.reddit.com/r/programming/comments/5emjes/list_of_singlefile_cc_libraries/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.motherearthnews.com/homesteading-and-livestock/dyna-diggr-zmaz84ndzraw ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/diggr-roguelike/diggr ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/gold_diggr_ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://betalist.com/@Gold_Diggr_ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://devhub.io/repos/jerrett-diggr ...'
b' |MSG| Found article'
b' |MSG| Scraping http://aldrichtoolrental.com/product/dyna-digger-power-shovel/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.openhub.net/p/diggr ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.alibaba.com/product-detail/Dyna-Digger_107859780.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/413150/discussions/0/1333474229060850310/ ...'
b' |MSG| Found article'
Name Dimension Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://archiotech.wikidot.com/dimensiondungeon
Status alpha
Released 2009/01/13
Updated 2009/09/06
Developer Archiotech
Theme Fantasy
Influences NaN
Name: 126, dtype: object
http://duckduckgo.com/html/?q=%22Dimension%20Dungeon%22%20AND%20Archiotech%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Domain Country
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dochamp.tripod.com/DomainCountry.htm
Status stable
Released 2000/08/19
Updated 2009/04/20
Developer David Kinney
Theme Educational
Influences Rogue
Name: 127, dtype: object
http://duckduckgo.com/html/?q=%22Domain%20Country%22%20AND%20David%20Kinney%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Doom, the Roguelike
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://doom.chaosforge.org/
Status stable
Released 2003/00/00
Updated 2013/03/13
Developer Kornel Kisielewicz
Theme Gore
Influences Doom
Name: 128, dtype: object
http://duckduckgo.com/html/?q=%22Doom%2C%20the%20Roguelike%22%20AND%20Kornel%20Kisielewicz%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://archive.org/details/Doom_the_Roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dosgames.com/game/doom-the-roguelike/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/doomrl/296 ...'
b' |MSG| Scraping https://chaosforge.org/presskit/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mobygames.com/game/doom-the-roguelike ...'
b' |MSG| Scraping http://doom.wikia.com/wiki/Doom,_the_Roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tvtropes.org/pmwiki/pmwiki.php/Videogame/DoomTheRogueLike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freepascal-meets-sdl.net/doomrl/ ...'
b' |MSG| Scraping http://www.theouterhaven.net/2016/12/zenimax-demanding-doomrl-website-taken/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://doomwiki.org/wiki/DRL ...'
b' |MSG| Scraping https://everipedia.org/wiki/DoomRL/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mobygames.com/game/dos/doom-the-roguelike ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=UNEL4dkhe5Q ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2016/11/episode-130-jupiter-hell-successor-to.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/articles/fan-made-doom-game-receives-legal-notice-from-doom/1100-6445928/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pl.linkedin.com/in/kornelkisielewicz ...'
b' |MSG| Scraping http://allthetropes.wikia.com/wiki/Doom_the_Roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/ID_AA_Carmack/status/800775250241720320 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=1Y8Ka1IOwwE ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikes/comments/5bo4ld/jupiter_hell_successor_to_doom_the_roguelike_is/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://player.fm/podcasts/Roguelike ...'
b'!!FAIL!! Failed to load https://player.fm/podcasts/Roguelike'
HTTPSConnectionPool(host='player.fm', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://homeoftheunderdogs.net/game.php?id=5165 ...'
b' |MSG| Found article'
Name DoppeRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://draax.no-ip.org/dopperogue.rar
Status alpha
Released 2006/01/19
Updated 2006/03/28
Developer DopeD
Theme Fantasy
Influences Diablo, ADOM, Baldur's Gate
Name: 129, dtype: object
http://duckduckgo.com/html/?q=%22DoppeRogue%22%20AND%20DopeD%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=2059.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=2059.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=2059.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
Name The Doryen Arena
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguecentral.org/
Status beta
Released 2008/05/28
Updated 2009/01/11
Developer Jice
Theme D&Dish stock fantasy
Influences NaN
Name: 130, dtype: object
http://duckduckgo.com/html/?q=%22The%20Doryen%20Arena%22%20AND%20Jice%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://roguecentral.org/doryen/2008/05/the-doryen-arena-is-released/ ...'
b' |MSG| Scraping http://roguecentral.org/doryen/forum/index.php?topic=157.0 ...'
b' |MSG| Scraping http://roguecentral.org/doryen/2009/01/the-doryen-arena-08-released/ ...'
b' |MSG| Scraping https://www.tigsource.com/2008/06/05/the-chronicles-of-doryen/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://roguecentral.org/doryen/2008/03/the-doryen-arena-weapons-skills-armors-conditions/ ...'
b' |MSG| Scraping http://roguecentral.org/doryen/games/arena/ ...'
b' |MSG| Scraping https://toucharcade.com/2018/08/31/arena-of-valor-news-aov-prime-details-cybercore-wukong-and-amily/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://doryen.blogspot.com/2008/05/doryen-arena-is-released.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://doryen.blogspot.ru/2008/03/doryen-forums-are-open.html ...'
b' |MSG| Found article'
Name Dragonslayer
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.astrolog.org/labyrnth/daedalus/drag...
Status stable
Released 2003/04/19
Updated 2016/9/1
Developer Walter D. Pullen
Theme Fantasy
Influences NetHack
Name: 131, dtype: object
http://duckduckgo.com/html/?q=%22Dragonslayer%22%20AND%20Walter%20D.%20Pullen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://aq-3d.wikidot.com/dragonslayer ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ranker.com/review/dragonslayer/887060 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dragonslayer-games.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dragonslayer.io/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://darksouls3.wiki.fextralife.com/Dragonslayer+Armour ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dragonslayer.se/ ...'
b' |MSG| Scraping http://mfov.magehandpress.com/2017/03/dragonslayer.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/13316328-the-last-dragonslayer ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nwobhm.com/dragonslayer/ ...'
b' |MSG| Scraping http://witcher.wikia.com/wiki/Dragonslayer%27s_Grotto ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki2.org/en/The_Last_Dragonslayer ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.commonsensemedia.org/movie-reviews/dragonslayer ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=k31rKO58vyc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dragonslayer.shivtr.red/ ...'
b' |MSG| Scraping https://twitter.com/dragonslayer074 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://hearthstone.gamepedia.com/Dragonslayer ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dragonslayer.bbbv.ru/ ...'
b' |MSG| Scraping http://trfdragonslayer.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dragonslayer.net/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://busy.org/@dragonslayer109 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dragonslayer.glogster.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://aq3d.com/news/dragonslayer/ ...'
b' |MSG| Found article'
Name Drain Storm
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status stable
Released 1997/00/00
Updated 2001/01/30
Developer Dave Horner
Theme Fantasy
Influences NaN
Name: 132, dtype: object
http://duckduckgo.com/html/?q=%22Drain%20Storm%22%20AND%20Dave%20Horner%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://archive.org/details/win3_dranstrm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.myabandonware.com/game/drain-storm-480 ...'
b' |MSG| Scraping https://everipedia.org/wiki/Storm_drain/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=G6c5bZLZrHc ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mentalfloss.com/article/556325/game-of-thrones-fan-theory-cersei-lannister-baby ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.abandonware.ws/drain_storm.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://goldenageofgames.com/drain-storm/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.facepunch.com/f/videos/boukp/Unknown-game-review-attempt-Drain-Storm-1997-roguelike-with-interesting-mechanics/1/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nyanglish.com/storm-drain ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki2.org/en/Storm_drain ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thesaurus.plus/related/drains/storm_drain ...'
b' |MSG| Scraping https://www.thefullwiki.org/Storm_drain ...'
b' |MSG| Found article'
b' |MSG| Scraping https://enacademic.com/dic.nsf/enwiki/233926 ...'
b'!!FAIL!! Failed to load https://enacademic.com/dic.nsf/enwiki/233926'
HTTPSConnectionPool(host='enacademic.com', port=443): Max retries exceeded with url: /dic.nsf/enwiki/233926 (Caused by SSLError(CertificateError("hostname 'enacademic.com' doesn't match either of '*.academic.ru', 'academic.ru'",),))
b' |MSG| Scraping http://en.wikibedia.ru/wiki/Storm_drain ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wiktionary.org/wiki/storm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://stormdrainmovie.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefreedictionary.com/storm ...'
b' |MSG| Scraping https://www.fileplanet.com/42877/40000/fileinfo/Drain-Storm-v1.02 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alchetron.com/Storm-drain ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.giantbomb.com/drain-storm/3030-8910/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.wsdot.wa.gov/publications/manuals/fulltext/m23-03/chapter6.pdf ...'
b' |MSG| Scraping https://www.tigsource.com/2007/07/17/classic-drain-storm/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.secret-storm-drain.com/ ...'
b' |MSG| Found article'
Name Drakefire Chasm
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dowhilecompiling.blogspot.com/p/drakefi...
Status unknown
Released 2012/003/18
Updated 2017/009/25
Developer Tanthie
Theme Fantasy
Influences ADOM, Dungeons & Dragons, World of Warcraft
Name: 133, dtype: object
http://duckduckgo.com/html/?q=%22Drakefire%20Chasm%22%20AND%20Tanthie%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://dowhilecompiling.blogspot.com/p/drakefire-chasm.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://uaclips.com/rev/drakefire+chasm/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=K4_tW3UH2nM ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=2683.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=2683.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=2683.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://chclip.net/rev/drakefire/ ...'
b' |MSG| Scraping https://archive.fo/AsSge ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/tanthieactual ...'
b' |MSG| Scraping https://www.reddit.com/r/roguelikes/comments/1r1jox/are_there_any_other_games_with_broguestyle/ ...'
b' |MSG| Scraping http://ForeverOnline.ru/category/drakefire ...'
b' |MSG| Scraping http://videoprime.ru/video/Drakefire ...'
b' |MSG| Scraping https://stopgame.ru/blogs/topic/58017 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://vipvidos.info/online/Drakefire ...'
b' |MSG| Scraping https://www.letsplayindex.com/videos/15383064-drakefire-chasm-roguelike-victory-by-red-dragon-skyvioletshadow ...'
b' |MSG| Found article'
b' |MSG| Scraping http://indierpgs.com/2013/03/7-day-roguelike-challenge-to-begin-tomorrow/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://refind.com/link/7811481 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rofilm.net/watch/chasm+game ...'
b' |MSG| Scraping http://forum.sources.ru/index.php?act=Print&client=html&f=206&t=373982 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ua-new.com/news/chasm+guide ...'
b' |MSG| Found article'
b' |MSG| Scraping https://in-mes.com/sname/chasm+game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nigetai.blogspot.com/2016/03/battle-brothers.html ...'
b' |MSG| Found article'
Name drogue 0.33
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sourceforge.net/project/showfiles.php?g...
Status alpha
Released 2008/01/06
Updated 2008/01/30
Developer drcz
Theme NaN
Influences Rogue, glpc
Name: 134, dtype: object
http://duckduckgo.com/html/?q=%22drogue%200.33%22%20AND%20drcz%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name DungeonEpic
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dungeonepic.com/
Status alpha
Released 2018/04/02
Updated 2018/4/2
Developer Mason Wheeler
Theme Fantasy
Influences ADOM, Nethack, Angband
Name: 135, dtype: object
http://duckduckgo.com/html/?q=%22DungeonEpic%22%20AND%20Mason%20Wheeler%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dungeon Crawl Stone Soup
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://crawl.develz.org/
Status stable
Released 2006/09/20
Updated 2017/07/02
Developer Stone Soup Team
Theme Fantasy
Influences Crawl
Name: 136, dtype: object
http://duckduckgo.com/html/?q=%22Dungeon%20Crawl%20Stone%20Soup%22%20AND%20Stone%20Soup%20Team%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dungeon Fray
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.dungeonfray.com/
Status stable
Released 2013/03/09
Updated 2013/03/17
Developer Nitesh Gupta
Theme Fantasy
Influences DCSS, Desktop Dungeons
Name: 137, dtype: object
http://duckduckgo.com/html/?q=%22Dungeon%20Fray%22%20AND%20Nitesh%20Gupta%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dungeon Hack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://free-game-downloads.mosw.com/abandonwar...
Status stable
Released 1993/00/00
Updated 1993/00/00
Developer DreamForge
Theme Fantasy
Influences NaN
Name: 138, dtype: object
http://duckduckgo.com/html/?q=%22Dungeon%20Hack%22%20AND%20DreamForge%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dungeon Ho!
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://play.google.com/store/apps/details?id=...
Status alpha
Released 2013/05/22
Updated 2013/05/22
Developer Sandalfoot Games
Theme fantasy
Influences NaN
Name: 139, dtype: object
http://duckduckgo.com/html/?q=%22Dungeon%20Ho%21%22%20AND%20Sandalfoot%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.sandalfoot.android.dungeonho&hl=en_US ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sandalfootgames.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=3194.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=3194.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=3194.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.chaptercheats.com/cheats/android/223257/Dungeon-Ho-Cheats.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.com/Sandalfoot-Games-Dungeon-Ho/product-reviews/B00C1OOEUA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.linkedin.com/in/stephen-karstensen-43531251 ...'
b' |MSG| Scraping https://www.appbrain.com/app/dungeon-ho/com.sandalfoot.android.dungeonho ...'
b' |MSG| Found article'
b' |MSG| Scraping https://connect.unity.com/u/5a45d6f303b00200199cbcf8 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefaqs.gamespot.com/company/158568-sandalfoot-games ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.com/Sandalfoot-Games-Dungeon-Ho/dp/B00C1OOEUA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://appagg.com/android-games/arcade/ho-ho-blingo-lite-3985591.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://appagg.com/android-games/arcade/ho-ha-2-20578396.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.ca/Sandalfoot-Games-Dungeon-Ho/dp/B00C1OOEUA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.co.uk/Sandalfoot-Games-Dungeon-Ho/dp/B00C1OOEUA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ca.linkedin.com/in/stephen-karstensen-43531251 ...'
b' |MSG| Scraping https://www.appbrain.com/app/tales-of-illyria%3Adestinies/ep3.littlekillerz.ringstrail ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dk.linkedin.com/in/stephen-karstensen-43531251 ...'
b' |MSG| Scraping https://fr.linkedin.com/in/stephen-karstensen-43531251 ...'
b' |MSG| Scraping https://www.linkedin.com/in/stephen-karstensen-43531251/de ...'
b' |MSG| Scraping https://www.reddit.com/r/roguelikes/comments/1b28eg/dungeon_ho_a_new_roguelike_for_android/ ...'
b' |MSG| Found article'
Name Dungeon Mercenary
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.schplaf.org/hgames
Status beta
Released 2016/01/19
Updated 2018/04/30
Developer smelC
Theme Traditional
Influences Brogue, Sil
Name: 140, dtype: object
http://duckduckgo.com/html/?q=%22Dungeon%20Mercenary%22%20AND%20smelC%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://hgames.itch.io/dungeon-mercenary ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/dungeon-mercenary/151692 ...'
b' |MSG| Scraping https://gamejolt.com/games/dungeon-mercenary/151692/devlog ...'
b' |MSG| Scraping https://www.blessonline.net/news_read/217 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://80.lv/articles/books-of-the-week-game-design-uncertainty-and-more/ ...'
b' |MSG| Scraping https://gameselectors.com/best-games/dungeon-crawler/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=HbxpA2mE0X4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=5173.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=5173.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=5173.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://screenrant.com/skyrim-hidden-bosses-how-to-find-tips-tricks/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://uaclips.com/rev/dungeon+crawler/ ...'
b' |MSG| Scraping https://www.mmorpg.com/columns/shadows-awakening-review-fantastic-and-flawed-1000012985 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.treeofsavior.com/t/cannot-apply-for-matching-in-saalus-dungeon-mercenary/380179 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blackmod.net/threads/game-knights-dungeons-v3-3-8-mod-high-dmg-god-mode-menu-on-off.1363/ ...'
b' |MSG| Scraping https://blackmod.net/threads/game-bloons-adventure-time-td-v1-0-6-mod.1321/ ...'
b' |MSG| Scraping https://www.pcgamer.com/path-of-exiles-delve-expansion-which-adds-an-endless-dungeon-is-out-now/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://irclip.net/rev/dungeon+crawl+video+game+genre/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ninegamelevel.ru/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kongregate.com/games/hgames/dungeon-mercenary ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.qwant.com/game/mercenary-kings?l=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=ICVEJSAm7og ...'
b' |MSG| Found article'
b' |MSG| Scraping https://usclip.net/rev/dungeon+crawler+2017/ ...'
b' |MSG| Scraping https://azclip.net/rev/roguelike+dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kzclip.com/rev/dungeon+crawler/ ...'
b' |MSG| Scraping https://twitter.com/hgamesdev/status/948941584233529344 ...'
b' |MSG| Found article'
Name Dungeon Monkey Unlimited
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gearheadrpg.com/
Status stable
Released 2010/00/00
Updated 1000/00/00
Developer Joseph Hewitt
Theme Fantasy
Influences Dungeon Monkey
Name: 141, dtype: object
http://duckduckgo.com/html/?q=%22Dungeon%20Monkey%20Unlimited%22%20AND%20Joseph%20Hewitt%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://bay12forums.com/smf/index.php?topic=82832.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4097.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4097.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4097.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.freepascal-meets-sdl.net/dungeon-monkey-unlimited/ ...'
b' |MSG| Scraping https://dungeon-monkey-unlimited.soft112.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gearheadrpg.com/downloads/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/forums/index.php?threads/squad-level-tactical-games.7389/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.namenfinden.de/s/joseph+hewitt ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pyra-handheld.com/boards/threads/dungeon-monkey-unlimited.71275/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sourceforge.net/projects/dmonkey/files/v1.000%20Series/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://netopensource.com/projects/dungeon-monkey-unlimited ...'
b' |MSG| Found article'
b' |MSG| Scraping http://repo.manaplus.org/sdtraces/BottinHTML/Bottin_D-J_files/Dungeon_Monkey_Unlimited-10874.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://chuck.dfwk.ru/rl/4.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://repo.openpandora.org/?page=detail&app=dmonkey_ptitseb&dp=true ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://turn-based-strategy-tactics-games.wikia.com/wiki/Master_list ...'
b' |MSG| Found article'
b' |MSG| Scraping https://community.gaslampgames.com/threads/too-much-loot-qs-first-impressions.1052/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://topalternate.com/tags/Dungeon+Monkey+Unlimited/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.fo/www.gearheadrpg.com ...'
Name Dungeon Screener
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.foumartgames.com/games/DungeonScree...
Status stable
Released 2016/05/22
Updated 2016/10/06
Developer Foumart
Theme Fantasy
Influences games from 80's
Name: 142, dtype: object
http://duckduckgo.com/html/?q=%22Dungeon%20Screener%22%20AND%20Foumart%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.foumartgames.com/games/DungeonScreener/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/dungeon-screener/168768 ...'
b' |MSG| Scraping http://kbhgames.com/game/dungeon-screener ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.blessonline.net/news_read/217 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.y8.com/games/dungeon_screener ...'
b' |MSG| Found article'
b' |MSG| Scraping https://80.lv/articles/books-of-the-week-game-design-uncertainty-and-more/ ...'
b' |MSG| Scraping https://armorgames.com/dungeon-screener-game/17955 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://screenrant.com/skyrim-hidden-bosses-how-to-find-tips-tricks/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/FoumartGames/posts ...'
b' |MSG| Scraping https://www.mmorpg.com/columns/shadows-awakening-review-fantastic-and-flawed-1000012985 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.hackedonlinegames.com/game/3248/dungeon-screener ...'
b' |MSG| Scraping https://blackmod.net/threads/game-knights-dungeons-v3-3-8-mod-high-dmg-god-mode-menu-on-off.1363/ ...'
b' |MSG| Scraping https://blackmod.net/threads/game-bloons-adventure-time-td-v1-0-6-mod.1321/ ...'
b' |MSG| Scraping https://www.newgrounds.com/ngio/medal/38375 ...'
b' |MSG| Scraping http://ninegamelevel.ru/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.arcadespot.com/game/dungeon-screener/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nexusmods.com/twopointhospital/news/13025 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gameshaha.com/dungeon-screener/ ...'
b' |MSG| Scraping https://ru.gamepost.com/games/dungeon_screener ...'
b' |MSG| Found article'
b' |MSG| Scraping http://k2t2.com/dungeon-screener/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.silvergames.com/en/dungeon-screener ...'
b' |MSG| Scraping http://friv.rest/dungeon-screener ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.prehackedgames.com/game/955/dungeon-screener ...'
b' |MSG| Scraping http://www.minecraftfree.org/dungeon-screener/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.kanogames.com/play/game/dungeon-screener ...'
Name Dungeon Typist
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/noffle/dungeon-typing
Status alpha
Released 2018/04/25
Updated 2018/04/25
Developer noffle
Theme Fantasy
Influences ADOM, Minecraft, Text adventures
Name: 143, dtype: object
http://duckduckgo.com/html/?q=%22Dungeon%20Typist%22%20AND%20noffle%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.blessonline.net/news_read/217 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apko.org/games/dungeon-boss-v0-5-10552-mod-apk/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://80.lv/articles/books-of-the-week-game-design-uncertainty-and-more/ ...'
b' |MSG| Scraping https://noffle.itch.io/dungeon-typist ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmorpg.com/columns/shadows-awakening-review-fantastic-and-flawed-1000012985 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://screenrant.com/skyrim-hidden-bosses-how-to-find-tips-tricks/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blackmod.net/threads/game-knights-dungeons-v3-3-8-mod-high-dmg-god-mode-menu-on-off.1363/ ...'
b' |MSG| Scraping http://ninegamelevel.ru/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/noffle/dungeon-typing ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wccftech.com/the-bards-tale-iv-gamescom-preview/ ...'
b' |MSG| Found article'
Name Dungeonlike
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sheriour.itch.io/dungeonlike
Status alpha
Released 2017/06/04
Updated 2018/08/09
Developer Sheriour
Theme Fantasy
Influences Dwarf Fortress, ToME, Elona, Diablo, Elder Scr...
Name: 144, dtype: object
http://duckduckgo.com/html/?q=%22Dungeonlike%22%20AND%20Sheriour%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://sheriour.itch.io/dungeonlike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/Dungeonlike/posts ...'
b' |MSG| Scraping http://gamestracker.org/torrents/pc/rpg/dungeonlike/4-1-0-13232 ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=mHYNkqG2IvY ...'
b' |MSG| Found article'
b' |MSG| Scraping http://small-games.info/?go=game&c=10&i=25410 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://frclip.com/rev/roguelike+dungeons/ ...'
b' |MSG| Scraping https://trvid.com/video/dungeonlike-traditional-roguelike-dungeon-crawler-game-mHYNkqG2IvY.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tvclip.biz/rev/dungeon+crawler+top/ ...'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=5405.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=5405.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=5405.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://video.mivzakon.co.il/mHYNkqG2IvY/Dungeonlike_Traditional_Roguelike_Dungeon_Crawler_Game.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.a-or-an.com/a_an/dungeonlike ...'
b' |MSG| Scraping https://wikidiff.com/dungeonlike/dungeon ...'
b' |MSG| Scraping https://uaclips.com/rev/roguelike+dungeons+games/ ...'
b' |MSG| Scraping https://mr-clip.com/rev/dungeon+game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.crosswordsolver.org/clues/d/dungeonlike.19209 ...'
b' |MSG| Scraping http://1onlines.info/online/Dungeonlike+game ...'
b' |MSG| Scraping https://www.wordhippo.com/what-is/the-noun-for/dungeonlike.html ...'
b' |MSG| Scraping https://idclips.com/rev/dungeon+crawler/ ...'
b' |MSG| Scraping https://plclip.com/rev/dungeon+crawlers/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://grclip.com/rev/roguelike+dungeons+1+7+10/ ...'
b' |MSG| Scraping http://www.togok.net/video/mHYNkqG2IvY/dungeonlike-traditional-roguelike-dungeon-crawler-game.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://isclips.com/rev/dungeon+crawler/ ...'
b' |MSG| Scraping http://nyanglish.com/dungeonlike ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.the-crossword-solver.com/word/dungeonlike ...'
b' |MSG| Found article'
Name Dungeonmans
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://store.steampowered.com/app/288120/Dunge...
Status alpha
Released 2010/04/15
Updated 2017/12/21
Developer Adventurepro Games LLC
Theme Crush Monsters, Get Loots
Influences Iron Heroes, ToME, Crawl, Knights of the Dinne...
Name: 145, dtype: object
http://duckduckgo.com/html/?q=%22Dungeonmans%22%20AND%20Adventurepro%20Games%20LLC%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dungeons of Decay
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sourceforge.net/projects/dungeonsofdecay/
Status beta
Released 2011/00/00
Updated 2011/00/00
Developer Matthias Sommer
Theme Fantasy
Influences Dungeon Crawl Stone Soup
Name: 146, dtype: object
http://duckduckgo.com/html/?q=%22Dungeons%20of%20Decay%22%20AND%20Matthias%20Sommer%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dungeons of Everchange ASCII
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.darkgnosis.com/
Status alpha
Released 2015/02/03
Updated 2018/7/27
Developer Dark Gnosis (Izzy)
Theme Fantasy
Influences Rogue, Brogue,Oblivion
Name: 147, dtype: object
http://duckduckgo.com/html/?q=%22Dungeons%20of%20Everchange%20ASCII%22%20AND%20Dark%20Gnosis%20%28Izzy%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dungeons of Dredmor
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.dungeonsofdredmor.com/
Status stable
Released 2011/00/00
Updated 2012/00/00
Developer Gaslamp Games
Theme Fantasy, Humor
Influences NetHack
Name: 148, dtype: object
http://duckduckgo.com/html/?q=%22Dungeons%20of%20Dredmor%22%20AND%20Gaslamp%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dungeons of Zennom
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://kolis.dyndns.org/zennom
Status alpha
Released 2008/00/00
Updated 2008/008/28
Developer Ed Kolis
Theme undecided
Influences Angband, Final Fantasy Tactics
Name: 149, dtype: object
http://duckduckgo.com/html/?q=%22Dungeons%20of%20Zennom%22%20AND%20Ed%20Kolis%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name DvEband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.angband.pwp.blueyonder.co.uk/dve.html
Status beta
Released 1999/00/00
Updated 1999/10/15
Developer Dennis van Es
Theme Fantasy
Influences Angband 2.8.3e
Name: 150, dtype: object
http://duckduckgo.com/html/?q=%22DvEband%22%20AND%20Dennis%20van%20Es%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Dweller
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.dwellergame.com/
Status stable
Released 2003/08/13
Updated 2014/06/12
Developer Björn Ritzl (formerly Bergström)
Theme Fantasy
Influences Angband, Crawl
Name: 151, dtype: object
http://duckduckgo.com/html/?q=%22Dweller%22%20AND%20Bj%C3%B6rn%20Ritzl%20%28formerly%20Bergstr%C3%B6m%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name DynaHack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://tung.github.io/DynaHack/
Status beta
Released 2013/09/22
Updated 2016/02/18
Developer Tung Nguyen
Theme Fantasy
Influences NetHack
Name: 152, dtype: object
http://duckduckgo.com/html/?q=%22DynaHack%22%20AND%20Tung%20Nguyen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Easy Angband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status stable
Released 2001/01/09
Updated 2001/11/2
Developer Andres Zanzani
Theme Fantasy
Influences GSN2Band
Name: 153, dtype: object
http://duckduckgo.com/html/?q=%22Easy%20Angband%22%20AND%20Andres%20Zanzani%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Egoboo
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://egoboo.sourceforge.net/
Status beta
Released 1999/00/00
Updated 2010/08/06
Developer Aaron & Ben Bishop
Theme Fantasy
Influences NetHack,<br> Art of ''Legend of Zelda''
Name: 154, dtype: object
http://duckduckgo.com/html/?q=%22Egoboo%22%20AND%20Aaron%20%26%20Ben%20Bishop%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Elona: Eternal League of Nefia
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ylvania.org/
Status stable
Released 2008/01/31
Updated 2009/05/17
Developer Noa
Theme Fantasy
Influences ADOM, AngBand, NetHack, Falcon's Eye
Name: 155, dtype: object
http://duckduckgo.com/html/?q=%22Elona%3A%20Eternal%20League%20of%20Nefia%22%20AND%20Noa%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.igdb.com/games/elona-eternal-league-of-nefia ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.evolvehq.com/games/1116 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesdb.launchbox-app.com/games/details/19949 ...'
b' |MSG| Scraping https://gamesdb.launchbox-app.com/games/images/19949 ...'
b' |MSG| Scraping http://gaming.wikia.com/wiki/Elona ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nexusmods.com/skyrim/mods/91967 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=91tpH02Mb40 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=n71l9zoKv5w ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.facepunch.com/f/games/bskni/Elona-The-pack-contains-your-younger-sister/1/ ...'
b' |MSG| Scraping https://www.revolvy.com/topic/Elona%20(video%20game) ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nexusmods.com/users/37993385?tab=user+files ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.cotiinc.com/w_elona+game/ ...'
b'!!FAIL!! Failed to load https://www.cotiinc.com/w_elona+game/'
HTTPSConnectionPool(host='www.cotiinc.com', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://dictionary.sensagent.com/elona%20video%20game/en-en/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.somethingawful.com/showthread.php?threadid=3547131 ...'
b' |MSG| Scraping https://www.peekyou.com/elona_ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.linkddl.com/search/elona ...'
b' |MSG| Found article'
b' |MSG| Scraping https://spinachvan.blogspot.com/ ...'
b' |MSG| Scraping http://www.linkddl.com/search/elona-plus-english-download ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.vidinfo.org/video/25912632/elona-shooter-last-two-days-in-hardcore-mod ...'
b' |MSG| Found article'
Name Emergence
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://integerman.itch.io/emergence-prototype
Status alpha-futuristic
Released 2018/01/28
Updated 2018/07/14
Developer Matt Eland
Theme Cyberpunk, Sci-Fi
Influences Dungeons of Dredmor, Cogmind, Shadowrun Return...
Name: 156, dtype: object
http://duckduckgo.com/html/?q=%22Emergence%22%20AND%20Matt%20Eland%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://80.lv/articles/books-of-the-week-game-design-uncertainty-and-more/ ...'
b' |MSG| Scraping https://www.emergenceboardgame.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.jesperjuul.net/text/openandtheclosed.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://blog.rpgmakerweb.com/design/progression-and-emergence-in-rpgs/ ...'
b' |MSG| Scraping https://www.emergenceinsurance.com.au/ ...'
b' |MSG| Scraping http://www.new-emergence.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://schoolworkhelper.net/essay-the-birth-of-the-state-and-the-emergence-of-the-modern-state/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://emergenceyoga.com.au/ ...'
b' |MSG| Scraping https://www.emergence.ch/ ...'
b' |MSG| Scraping http://www.emergence-s.fr/ ...'
b' |MSG| Scraping http://emergence64.fr/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.emergence.edu.lk/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.emergence.co.uk/the-science/what-is-emergence-theory ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.4emergence.com/ ...'
b' |MSG| Scraping https://design4emergence.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.emergence-conscience.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.emergence-arts.com/ ...'
b' |MSG| Scraping https://www.emergenceconvergence.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://residence-emergence.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mattmazur.com/2014/02/24/emergence-artificial-life-and-a-new-blog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=o_ZuWbX-CyE ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.emergence.nu/ ...'
b' |MSG| Scraping http://learningemergence.net/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://emergencemedia.org/ ...'
b' |MSG| Found article'
Name Encircled
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dl.dropbox.com/u/6433222/encircled.zip
Status stable
Released 2012/08/25
Updated 2012/09/16
Developer SRD
Theme Positioning, tactics
Influences Rogue Rage, ChessRogue, PrincessRL, Cellular a...
Name: 157, dtype: object
http://duckduckgo.com/html/?q=%22Encircled%22%20AND%20SRD%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.oldschoolpixels.com/?p=705 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wideanglegames.com/blog/2015/11/22/dogfight-aces-post-mortem/ ...'
b' |MSG| Scraping https://www.encircled.co/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://history.stackexchange.com/a/39726 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quora.com/During-WWII-the-Germans-encircled-large-amounts-of-Soviet-troops-and-captured-them-How-does-encirclement-work-during-war-How-are-they-sure-they-fully-encircled-and-trapped-the-enemy?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://sentence.yourdictionary.com/encircled ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.escapegames24.com/2018/09/nsr-easel-room-escape.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://answers.yahoo.com/question/index?qid=1006052012908 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://encircled.wordmeanings.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.oddhistorian.com/the-12-most-heroic-last-stands-in-military-history/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://encircled.bandcamp.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wordgamehelper.com/word/encircled ...'
b' |MSG| Scraping https://encircledfilm.com/ ...'
b' |MSG| Scraping http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0167743 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.wineverygame.com/word/meaning/encircled.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://commons.wikimedia.org/wiki/Category:Encircled_letters,_numbers_and_symbols ...'
b' |MSG| Found article'
b' |MSG| Scraping https://biblehub.com/topical/e/encircled.htm ...'
b' |MSG| Scraping http://encircled.com/ ...'
b' |MSG| Scraping https://www.history.com/news/11-innovations-that-changed-history ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.phoenixmasonry.org/goulds_history_volume_1.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.militaryheritage.com/sword19.htm ...'
b' |MSG| Scraping http://www.novelsaga.com/the-six-immortals-chapter-58/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dictionary.com/browse/encircled ...'
b' |MSG| Found article'
Name Endless Road
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/endlessroadrogue...
Status alpha
Released 2017/01/10
Updated 2017/01/10
Developer Mikhail Maryshev
Theme Fantasy
Influences Adom
Name: 158, dtype: object
http://duckduckgo.com/html/?q=%22Endless%20Road%22%20AND%20Mikhail%20Maryshev%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://store.steampowered.com/app/782570/Endless_Road/ ...'
b' |MSG| Scraping https://www.moddb.com/games/endless-road1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.user00.com/my2iu/games/endlessroad/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/endless-road.html ...'
b' |MSG| Scraping https://itunes.apple.com/us/app/hardway-endless-road-builder/id1199358596?mt=8 ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=WwliN6p_zWw ...'
b' |MSG| Found article'
b' |MSG| Scraping https://oneendlessroad.wordpress.com/2008/10/26/endlessroad/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ontheendlessroad.com/ ...'
b' |MSG| Scraping https://endlessroad.bandcamp.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/endless-road ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgame.com/endless-road ...'
b' |MSG| Found article'
b' |MSG| Scraping https://littlegamesblog.wordpress.com/2014/07/29/text-and-drive-friendship-never-dies-journey-on-the-endless-road/ ...'
b' |MSG| Scraping https://www.saatchiart.com/art/Painting-ENDLESS-ROAD-ETERNAL-BEING/673455/2256909/view ...'
b' |MSG| Found article'
b' |MSG| Scraping http://playpcgames.co/endless-road/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://blog.fredericknewspost.com/blog/2014/07/21/weave-to-the-write/the-endless-road/ ...'
b' |MSG| Scraping https://endlessroad11.livejournal.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://thisendlessroad.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://storiesandfootnotes.com/endless-road ...'
b' |MSG| Scraping https://www.coderewind.com/2017/03/hardway-endless-road-builder-game-week/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.endlessroad.me/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.instagram.com/_endless_road_/?hl=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://endless-road-rush.soft112.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thendlessroad.blogspot.com/ ...'
Name Epigon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Eben Howard
Theme Crafting, Persistence, Inheritance
Influences ADOM, UnReal World, Elona
Name: 159, dtype: object
http://duckduckgo.com/html/?q=%22Epigon%22%20AND%20Eben%20Howard%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://sjp.pl/epigon ...'
b' |MSG| Scraping http://epigon.in/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.epigon.info/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://epigon.wordmeanings.org/ ...'
b' |MSG| Scraping http://www.the-crossword-solver.com/word/EPIGON ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wiktionary.org/wiki/epigon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/drroguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/SquidPony ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thesaurus.plus/related/epigone/epigon ...'
b' |MSG| Scraping https://epigon.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://epigonomics.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.epigon.cz/ ...'
b' |MSG| Scraping http://www.epigon.nu/ ...'
b' |MSG| Scraping http://www.omnilexica.com/?q=epigon ...'
b' |MSG| Found article'
b' |MSG| Scraping http://epigon.ch/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/epigon.band/ ...'
b' |MSG| Scraping http://www.epigon.pl/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.epigon.eu/ ...'
b' |MSG| Scraping http://www.epigon.sk/ ...'
b' |MSG| Scraping https://www.wordgamehelper.com/word/epigon ...'
b' |MSG| Scraping https://www.digopaul.com/english-word/epigon.html ...'
b' |MSG| Scraping https://kann.bandcamp.com/track/epigon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://epigon.co.uk/ ...'
b'!!FAIL!! Failed to load https://epigon.co.uk/'
HTTPSConnectionPool(host='epigon.co.uk', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError("hostname 'epigon.co.uk' doesn't match 'lombok.iway.ch'",),))
b' |MSG| Scraping http://www.wineverygame.com/word/meaning/epigon.html ...'
b' |MSG| Found article'
Name Epilogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://kraflab.itch.io/epilogue
Status stable
Released 2012/3/7
Updated 2013/1/17
Developer Kraflab
Theme Fantasy
Influences Dungeon Crawl Stone Soup
Name: 160, dtype: object
http://duckduckgo.com/html/?q=%22Epilogue%22%20AND%20Kraflab%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://gamasutra.com/blogs/HowardTsao/20140626/219785/Guns_of_Icarus_Online_PostMortem__Epilogue_How_Youtube_Steam_and_Our_Players_Got_Us_This_Far.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kraflab.itch.io/epilogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://iankingsleyauthor.blogspot.com/2013/03/defined-prologue-epilogue-foreword.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=sw25zPTsDVU ...'
b' |MSG| Scraping https://nihilart.bandcamp.com/album/plana-epilogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://80.lv/articles/books-of-the-week-game-design-uncertainty-and-more/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=hq6UnubXgZs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rpgwatch.com/forums/showthread.php?t=17344 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wikibooks.org/wiki/Muggles%27_Guide_to_Harry_Potter/Books/Deathly_Hallows/Epilogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/nioh-review/1900-6416611/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.epilogue.net/art/31543-post-mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://epilogue.ph/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/epilogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://l2epilogue.eu/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://epilogue.press/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefreedictionary.com/prologue%20and%20epilogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.foodnewstime.ru/tag/epilogue ...'
b' |MSG| Scraping https://epilogue.in/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://epilogue.ca/ ...'
b' |MSG| Scraping http://awoiaf.westeros.org/index.php/A_Storm_of_Swords-Epilogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.britannica.com/art/epilogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mp3get.cc/mp3-yearning-epilogue-nemo-ante-mortem-beatus-274910849226.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lotro-wiki.com/index.php/Category:Vol._II._Book_9_Quests ...'
b' |MSG| Found article'
Name Equin: The Lantern
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dxfgames.com/EquinTheLantern/EquinTheLa...
Status stable
Released 2016/00/00
Updated 2016/00/00
Developer DXF Games
Theme Fantasy
Influences Dragon Quest, Dungeon Dash,Diablo,Dark Souls
Name: 161, dtype: object
http://duckduckgo.com/html/?q=%22Equin%3A%20The%20Lantern%22%20AND%20DXF%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://store.steampowered.com/app/547980/Equin_The_Lantern/ ...'
b' |MSG| Scraping https://gamesmojo.com/games/indie/equin-the-lantern ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=2rgkiBg6p6k ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamerankings.com/pc/200572-equin-the-lantern/index.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/equin-the-lantern ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tvtropes.org/pmwiki/pmwiki.php/VideoGame/EquinTheLantern ...'
b' |MSG| Scraping https://sites.google.com/site/thetwosdaycodeb/game-walkthroughs/equin-the-lantern-pc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/equin-the-lantern ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamkeysgames.net/free-steam-keys/sports/22426-equin-the-lantern-free-steam-key-game.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pcgamingwiki.com/wiki/Equin:_The_Lantern ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metacritic.com/game/pc/equin-the-lantern ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tvtropes.org/pmwiki/article_history.php?article=VideoGame.EquinTheLantern ...'
b' |MSG| Scraping https://cs.rin.ru/forum/viewtopic.php?t=85793 ...'
b' |MSG| Scraping http://www.cubed3.com/review/4511/1/equin-the-lantern-pc.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/equin-the-lantern/mods ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/equin-the-lantern/downloads ...'
b' |MSG| Scraping https://pcgamingwiki.com/wiki/Engine:Clickteam_Fusion ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.cubed3.com/screens/8722/equin-the-lantern-pc-screenshots-pictures-artwork.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=29832.0 ...'
b' |MSG| Scraping https://truesteamachievements.com/game/Equin-The-Lantern/achievements ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.steamprices.com/br/app/547980/equin-the-lantern ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.create-games.com/download.asp?id=8865 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.steamprices.com/us/app/547980/equin-the-lantern ...'
b' |MSG| Scraping https://www.exophase.com/game/equin-the-lantern-steam/achievements/ ...'
b' |MSG| Found article'
Name Escape From Fobbahland
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.fobbah.com/eff.html
Status alpha
Released 2008/05/11
Updated 1000/00/00
Developer Fobbah
Theme Fantasy
Influences NaN
Name: 162, dtype: object
http://duckduckgo.com/html/?q=%22Escape%20From%20Fobbahland%22%20AND%20Fobbah%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=183.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=183.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=183.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.escapegames24.com/2018/09/wow-escape-student-from-library.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
Name Escape From Aeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://ghostknot-games.itch.io/
Status beta
Released 1000/00/00
Updated 2018/08/15
Developer Ghostknot Games
Theme Science Fiction, Horror
Influences Dungeon Crawl Stone Soup, Infra Arcana
Name: 163, dtype: object
http://duckduckgo.com/html/?q=%22Escape%20From%20Aeon%22%20AND%20Ghostknot%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://small-games.info/?go=game&c=80&i=25982 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ghostknot-games.itch.io/efa ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.escapegames24.com/2018/09/wow-escape-student-from-library.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.escapegames24.com/2018/09/nsr-easel-room-escape.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=el-ZqQ4utLE ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.escapegamesdaily.com/2018/09/wowescape-escape-student-from-library-walkthrough.html ...'
b' |MSG| Scraping https://connect.unity.com/p/escape-from-aeon ...'
b' |MSG| Found article'
b' |MSG| Scraping http://games4king.com/games-walkthrough/g4k-battle-man-escape-game-walkthrough ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.linkedin.com/in/rauno-villberg-0b485a71 ...'
b' |MSG| Scraping http://www.enagames.com/game-walkthrough/games2rule-hut-village-adventurous-escape-walkthrough ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.enagames.com/game-walkthrough/wowescape-top-view-cottage-escape-walkthrough ...'
b' |MSG| Found article'
b' |MSG| Scraping https://soundcloud.com/ghostknot-games/escape-from-aeon-title-sketch ...'
b' |MSG| Found article'
b' |MSG| Scraping http://games2jolly.com/walkthrough/wowescape-escape-the-student-from-library-walkthrough ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dribbble.com/shots/4422755-Escape-from-Aeon-logo ...'
b' |MSG| Found article'
b' |MSG| Scraping http://avmgames.com/room-escape-games/games4escape-ruined-jail-escape ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/ghostknot_games ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/itchio/status/973242214485655552 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gfycat.com/gifs/detail/DapperOddFieldmouse ...'
b' |MSG| Found article'
b' |MSG| Scraping https://zumto.com/gif/escape-from-aeon-starting-out/untidycorruptbuzzard ...'
b' |MSG| Found article'
b' |MSG| Scraping http://obzoroved.ru/d/https/ghostknot-games.itch.io/1a9bf02e~/efa/devlog/36194/build-4 ...'
Name Escape from Dragon's Den
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.ambrosia-designs.co.za/
Status stable
Released 2011/10/20
Updated 2011/10/20
Developer Ambrosia-Designs
Theme Fantasy
Influences NaN
Name: 164, dtype: object
http://duckduckgo.com/html/?q=%22Escape%20from%20Dragon%27s%20Den%22%20AND%20Ambrosia-Designs%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name Escape from the Master's Lair
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://cheeseandbacon.org/escape/
Status beta
Released 2011/04/21
Updated 2012/08/04
Developer Kevin Wells
Theme Fantasy
Influences Nethack, Dungeon Crawl Stone Soup
Name: 165, dtype: object
http://duckduckgo.com/html/?q=%22Escape%20from%20the%20Master%27s%20Lair%22%20AND%20Kevin%20Wells%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Enter the Roguelike Dimension (EtRD)
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://lyeeedar.blogspot.co.uk/
Status alpha
Released 2013/02/14
Updated 2013/02/27
Developer Lyeeedar
Theme Fantasy
Influences NetHack, Monster Hunter
Name: 166, dtype: object
http://duckduckgo.com/html/?q=%22Enter%20the%20Roguelike%20Dimension%20%28EtRD%29%22%20AND%20Lyeeedar%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.java-gaming.org/index.php?;topic=28756.0 ...'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=3005.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=3005.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=3005.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://roguelikedeveloper.blogspot.com/ ...'
b' |MSG| Found article'
Name EverSector
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://maugrift.itch.io/eversector
Status alpha
Released 2017/06/28
Updated 2017/09/21
Developer Maugrift
Theme Sci-fi, Space, Survival, Simulation
Influences FTL: Faster Than Light, No Man's Sky, Dwarf Fo...
Name: 167, dtype: object
http://duckduckgo.com/html/?q=%22EverSector%22%20AND%20Maugrift%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://maugrift.itch.io/eversector ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/maugrift/status/913573045889110017 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://eversector.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/Maugrift/status/887444986429616132 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/+Maugrift ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bitbucket.org/Maugrift/eversector ...'
b' |MSG| Scraping https://github.com/Maugrift ...'
b' |MSG| Scraping http://h2018.top/Maugrift ...'
b' |MSG| Scraping https://steamcommunity.com/id/maugrift ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.kongregate.com/accounts/darklordmogrithe ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.twiit.club/u/Maugrift ...'
b' |MSG| Scraping https://www.reddit.com/r/roguelikedev/comments/6ncuhm/sharing_saturday_163/ ...'
b' |MSG| Scraping https://44ip.net/eversector.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://jeux1d100.net/blog/tag/tourpartour/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/y5wRG9P1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://keyoptimize.com/site-info/maugrift.itch.io ...'
b'!!FAIL!! Failed to load https://keyoptimize.com/site-info/maugrift.itch.io'
HTTPSConnectionPool(host='keyoptimize.com', port=443): Max retries exceeded with url: /site-info/maugrift.itch.io (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://redditmetrics.com/r/EverSector ...'
b' |MSG| Found article'
b' |MSG| Scraping https://servicehostnet.com/domain/eversector.com ...'
b' |MSG| Scraping http://www.twipubg.com/tag/rexpaint ...'
b' |MSG| Scraping https://reddit-com.zxc.party/r/roguelikedev/comments/8s5x5n/roguelikedev_does_the_complete_roguelike_tutorial/ ...'
Name Expedition
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://slashwareint.com/expedition/
Status beta
Released 2009/00/00
Updated 1000/00/00
Developer Slash
Theme Discovery of the New World
Influences Seven Cities of Gold
Name: 168, dtype: object
http://duckduckgo.com/html/?q=%22Expedition%22%20AND%20Slash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://expeditiongame.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://expeditiongame.com/blog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=OaDkUCjeiz8 ...'
b' |MSG| Scraping http://www.rgamereview.com/series-list/hidden-expedition-games ...'
b' |MSG| Found article'
b' |MSG| Scraping http://watchersonthewall.com/game-thrones-post-mortem-eastwatch/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nyanglish.com/post-mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://asorblog.org/2016/02/03/the-so-called-jehoash-inscription-a-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/blogs/AdriaanJansen/20160905/266289/Post_Mortem_Renowned_Explorers.php ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.htexpeditions.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.slashie.net/ ...'
b' |MSG| Scraping http://expedition65.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2016/09/02/the-curious-expedition-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://exvius.gamepedia.com/Expedition ...'
b' |MSG| Found article'
b' |MSG| Scraping http://satoriexpeditions.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wiktionary.org/wiki/expedition ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/communities/111483488089227512354 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.auroraexpeditions.com.au/team ...'
b' |MSG| Found article'
b' |MSG| Scraping https://au.expeditions.com/blog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://kancolle.wikia.com/wiki/Expedition/Expedition_Guidelines ...'
b' |MSG| Scraping https://coolantarctica.com/Antarctica%20fact%20file/History/Ernest%20Shackleton_Nimrod_expedition.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://expeditionworkshed.org/games/ ...'
b' |MSG| Scraping https://expedition-to-castle-ravenloft.obsidianportal.com/wikis/hack-and-slash ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.history.com/news/6-explorers-who-disappeared ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thepostmortempost.com/2015/10/01/george-leigh-mallory/ ...'
b'!!FAIL!! Failed to load http://www.thepostmortempost.com/2015/10/01/george-leigh-mallory/'
HTTPConnectionPool(host='www.thepostmortempost.com', port=80): Read timed out. (read timeout=15.1)
Name Exploring The Bleak
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/5v3nd0ttg/ExploringTheBleak...
Status stable
Released 2010/09/19
Updated 2011/01/10
Developer Nathaniel Inman
Theme Fantasy
Influences NetHack
Name: 169, dtype: object
http://duckduckgo.com/html/?q=%22Exploring%20The%20Bleak%22%20AND%20Nathaniel%20Inman%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://archive.li/Leo1V ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.bbc.com/travel/story/20150207-exploring-the-bleak-real-world-set-of-the-hunger-games ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguetemple.com/7drl/2016/ ...'
Name FARA
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://playfara.com/
Status alpha
Released 2018/05/20
Updated 2018/08/01
Developer BrianIsCreative
Theme Fantasy
Influences Dwarf Fortress, Guild Wars 2, For Honor, Stree...
Name: 170, dtype: object
http://duckduckgo.com/html/?q=%22FARA%22%20AND%20BrianIsCreative%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name FATE
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.fatethegame.com/
Status stable
Released 2005/00/00
Updated 2006/00/00
Developer WildTangent INC.
Theme Fantasy
Influences Angband, Diablo
Name: 171, dtype: object
http://duckduckgo.com/html/?q=%22FATE%22%20AND%20WildTangent%20INC.%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name FOR - A Fallout-like Roguelike
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/lcarst/for
Status stable
Released 1000/00/00
Updated 1000/00/00
Developer User:w00tles
Theme Post-apocalyptic scifi
Influences Fallout, Crawl
Name: 172, dtype: object
http://duckduckgo.com/html/?q=%22FOR%20-%20A%20Fallout-like%20Roguelike%22%20AND%20User%3Aw00tles%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Fabula Divina
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.fabuladivina.com/
Status stable
Released 2012/1/23
Updated 2012/01/30
Developer Cannon Technolgies
Theme Fantasy
Influences Ultima, Torchlight, ADOM, Minecraft
Name: 173, dtype: object
http://duckduckgo.com/html/?q=%22Fabula%20Divina%22%20AND%20Cannon%20Technolgies%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Falcon's Eye
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://users.tkk.fi/~jtpelto2/nethack.html
Status stable
Released 2000/10/16
Updated 2001/7/3
Developer Jaakko Peltonen
Theme NaN
Influences NetHack
Name: 174, dtype: object
http://duckduckgo.com/html/?q=%22Falcon%27s%20Eye%22%20AND%20Jaakko%20Peltonen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://download.cnet.com/Falcon-s-Eye/3000-7536_4-75451720.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nethack-falcons-eye.en.uptodown.com/windows/download ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libregamewiki.org/Falcon%27s_Eye ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/content.php?id=32 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://homeoftheunderdogs.net/game.php?id=2470 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://yepdownload.com/nethack-falcons-eye ...'
b'!!FAIL!! Failed to load https://yepdownload.com/nethack-falcons-eye'
HTTPSConnectionPool(host='yepdownload.com', port=443): Max retries exceeded with url: /nethack-falcons-eye (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://games.slashdot.org/story/03/01/17/181208/falcons-eye-a-make-over-for-nethack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mac.appstorm.net/general/the-ultimate-list-of-50-free-mac-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://users.ics.aalto.fi/praiko/lives/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dictionnaire.sensagent.leparisien.fr/falcon+s+eye/en-en/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.revolvy.com/main/index.php?s=NetHack ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/content.php?page=22 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamasutra.com/view/feature/4013/the_history_of_rogue_have__you_.php?print=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nethack.wikia.com/wiki/Rec.games.roguelike.nethack_FAQ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.revolvy.com/topic/List%20of%20roguelikes ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libregamewiki.org/Roguelike_games ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alt.org/nethack/mirror/www.nicolaas.net/erebus/ ...'
b' |MSG| Scraping https://www.linuxjournal.com/article/8491 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nethackwiki.com/wiki/Rec.games.roguelike.nethack_FAQ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.linux-mag.com/id/1524/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://armchairarcade.com/neo/taxonomy/term/626?page=7 ...'
b' |MSG| Found article'
Name Fallen
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://bterogue.blogspot.com/
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Jolly Roger, larrex (Vadim Stovbunsky)
Theme Dark fantasy, Steampunk
Influences Elona, Arcanum
Name: 175, dtype: object
http://duckduckgo.com/html/?q=%22Fallen%22%20AND%20Jolly%20Roger%20OR%20%20larrex%20%28Vadim%20Stovbunsky%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://onepiece.wikia.com/wiki/Jolly_Roger ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bterogue.blogspot.com/ ...'
b' |MSG| Scraping http://www.joyofbaby.com/meaning/name/Roger ...'
b' |MSG| Scraping http://www.dreadpirate.info/jollyroger.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ropermike.com/trouble/title-index-p.php ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thegamecritique.com/recent-posts/fallen-a-story-from-primordia/4707/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://erogegames.com/eroge-visual-novels/eroge-requests/4785-another-story-fallen-maidens-fallen-hero-magic-sword-truth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/user/ur38462067/reviews ...'
b' |MSG| Found article'
b' |MSG| Scraping http://paradoxbrown.com/genesis6sonsofgodfallenangels.htm/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mods.allthefallen.ninja/ ...'
b' |MSG| Scraping https://www.babynamespedia.com/meaning/Roger ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=kiKwuz85Ar4 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dulfy.net/2015/10/20/swtor-knights-of-the-fallen-empire-quest-and-story-guide/ ...'
b' |MSG| Scraping https://www.goodreads.com/book/show/20168816-rogues ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.fallen.io/ ...'
b' |MSG| Scraping https://www.britannica.com/event/Battle-of-Fallen-Timbers ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesradar.com/destiny-2-story/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/lords-of-the-fallen-review/1900-6415929/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wikiquote.org/wiki/Roger_Ebert ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rottentomatoes.com/celebrity/roger_vadim/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.englishforums.com/English/FellOrFallen/gccbx/post.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/game/fallen-london/ ...'
b' |MSG| Found article'
Name Fame
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sourceforge.net/projects/untitled-rpg
Status stable
Released 2006/1/15
Updated 2018/5/12
Developer Piotr Bednaruk
Theme Fantasy
Influences ADOM
Name: 176, dtype: object
http://duckduckgo.com/html/?q=%22Fame%22%20AND%20Piotr%20Bednaruk%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://blog.roguetemple.com/2013/03/10/what-a-beatiful-day-lets-kill-some-ugly-monsters/ ...'
b' |MSG| Scraping https://unitydojo.blogspot.com/2015/04/one-year-game-development-blog-post.html ...'
b' |MSG| Scraping https://unitydojo.blogspot.com/2016/03/two-year-game-development-blog-post.html ...'
b' |MSG| Scraping https://laterceramadre.blogspot.com/2013/07/more-victorian-post-mortem-photography.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://blog.fameandpartners.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gameinmemoria.com/2017/04/guide-hall-of-fame-1-quest-overviews.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=xi2vokg7ZlQ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/FameandPartners/ ...'
b' |MSG| Scraping https://www.instagram.com/fameandpartners/?hl=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://listverse.com/2016/04/09/10-gruesome-post-mortem-punishments/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thegameforfame.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fame.pt/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefamegame.nl/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://baseballpastandpresent.com/2014/01/08/2014-hall-fame-forecast-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.realmeye.com/wiki/experience-and-fame ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.famegame.com.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamefame.net/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ashford.zone/2009/08/creepy-post-mortem-photos-from-the-victorian-age ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.fameandpartners.com.au/faqs ...'
b' |MSG| Scraping https://www.pinterest.com/romabiz/fame-and-death/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/2942.A_General_History_of_the_Pyrates ...'
b' |MSG| Found article'
Name Featurecreeper
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/featurecreeper/
Status beta
Released 2010/04/13
Updated 2010/04/19
Developer NaN
Theme Fantasy/Madness
Influences Madness
Name: 177, dtype: object
http://duckduckgo.com/html/?q=%22Featurecreeper%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://featurecreeper.wordpress.com/2009/07/24/final-fantasy-v-advance-mini-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://featurecreeper.wordpress.com/about/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://featurecreeper.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://featurecreeper.wordpress.com/about-the-blog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/featurecreeper ...'
b' |MSG| Found article'
b' |MSG| Scraping http://roguecentral.org/doryen/libtcod/projects-2/ ...'
b' |MSG| Scraping https://ifunny.co/tags/featurecreeper ...'
b' |MSG| Found article'
b' |MSG| Scraping https://featurecreeper.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pwmarcz.pl/madness/ ...'
b' |MSG| Found article'
Name Fief: the Medieval Manor Simulation
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.arboreantears.com/fief
Status alpha
Released 2013/10/23
Updated 2015/02/11
Developer Eugene Brandewie
Theme List of roguelikes by theme#Historical
Influences Dwarf Fortress, Unreal World
Name: 178, dtype: object
http://duckduckgo.com/html/?q=%22Fief%3A%20the%20Medieval%20Manor%20Simulation%22%20AND%20Eugene%20Brandewie%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name Finally Lord
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://github.com/Arrkangel/FinallyLord
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Arrkangel
Theme Sci-fi,High Fantasy
Influences Dwarf Fortress,Crawl,Cataclysm,Caves of Qud
Name: 179, dtype: object
http://duckduckgo.com/html/?q=%22Finally%20Lord%22%20AND%20Arrkangel%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.quora.com/How-did-Lord-Rama-and-Sita-die?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.preservearticles.com/2011090412893/brief-notes-on-lord-dalhousie-and-the-policy-of-annexation-184856.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.vg247.com/2018/09/01/valve-game-more-game-development/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://julibf.tumblr.com/post/177634962971/queen-sansa-stark-will-change-the-law-of ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quora.com/What-are-the-mind-blowing-glories-of-Lord-Rama?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://brave-exvius.com/threads/unit-review-shadow-lord-final-fantasy-xi.40420/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eventhubs.com/news/2018/aug/31/netherrealm-studios-working-new-game-and-theres-good-chance-its-mortal-kombat-11-which-characters-do-you-want-see-return/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.worshipthefandom.com/content/are-the-lannisters-actually-the-heroes-of-game-of-thrones ...'
b' |MSG| Scraping https://www.theguardian.com/film/2018/sep/01/peterloo-review-grit-and-brilliance-in-mike-leighs-very-british-massacre ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.jstor.org/stable/10.1525/j.ctt5hjj04 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://julibf.tumblr.com/post/177635527136/every-single-time-lyanna-stark-appeared-in-the ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sgtreport.com/2018/09/should-i-stay-or-should-i-go-is-it-finally-time-to-leave-america/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://landofodd.net/2016/08/02/swtor-class-storyline-review-imperial-agent-chapter-three/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesradar.com/8-things-to-watch-out-for-this-week-august-31/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://toucharcade.com/2018/08/31/wonder-blade-mfi-controller-update-premium/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gameofthrones.wikia.com/wiki/High_Sparrow_(episode) ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.enotes.com/homework-help/what-complication-resolution-story-romeo-juliet-7949 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://411mania.com/wrestling/csonkas-impact-wrestling-redefined-2018-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/Arrkangel/FinallyLord ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mic.com/articles/147103/this-game-of-thrones-fan-theory-could-see-arya-stark-returning-during-tonight-s-finale ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dlshq.org/download/shanmukha.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.marxists.org/archive/marx/works/download/pdf/lord_palmerston.pdf ...'
b' |MSG| Scraping http://ritsin.com/seven-interesting-stories-lord-ganesha-indian-mythology.html/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archiveofourown.org/works/13053648?view_full_work=true ...'
b' |MSG| Found article'
Name FAangband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://angband.oook.cz/faangband/
Status stable
Released 2005/11/28
Updated 2012/05/10
Developer Nick McConnell (''nckmccnnll''@''yahoo.com.au'')
Theme Fantasy
Influences OAngband 0.7.0
Name: 180, dtype: object
http://duckduckgo.com/html/?q=%22FAangband%22%20AND%20Nick%20McConnell%20%28%27%27nckmccnnll%27%27%40%27%27yahoo.com.au%27%27%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name First Paradise
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://gvxcomp.itch.io/first-paradise
Status beta
Released 2014/04/20
Updated 2017/12/13
Developer Christon "Doop" LeJohn
Theme Science-Fiction, Mystery
Influences Zoo Base, A Mind Forever Voyaging
Name: 181, dtype: object
http://duckduckgo.com/html/?q=%22First%20Paradise%22%20AND%20Christon%20%22Doop%22%20LeJohn%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=5502.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=5502.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=5502.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://gvxcomp.itch.io/first-paradise ...'
b' |MSG| Found article'
Name FlatlineRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://flend.net/
Status stable
Released 2013/03/17
Updated 2013/03/17
Developer flend
Theme scifi
Influences DoomRL, Hotline Miami, Gruesome
Name: 182, dtype: object
http://duckduckgo.com/html/?q=%22FlatlineRL%22%20AND%20flend%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://flend.net/flatlinerl/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.freeindiegam.es/2013/03/flatlinerl-flend/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguetemple.com/7drl/2013/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=FzahRABCVv8 ...'
b' |MSG| Scraping https://download.tuxfamily.org/sdtraces/BottinHTML/Bottin_D-J_files/FlatlineRL-14065.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://igrovoetv.ru/video/yFzahRABCVv8/-/7DRL%202013%20-%20FlatlineRL ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.webwiki.com/flend.net ...'
b' |MSG| Found article'
b' |MSG| Scraping http://riotpixels.com/indie-05jun2014-11-flatlinerl_full/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/forums/index.php?threads/looking-for-a-futuresque-rpg.95540/page-6 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/NpsRuvvU/7drl-success-well-you-judge-flatlinerl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki.archlinux.org/index.php/User:Axper/sandbox ...'
b' |MSG| Scraping https://github.com/flend/roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alexvampire.wordpress.com/2016/01/24/roguelike-mega-collection-700-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://vortexnews.ru/video/NkEQQgbS86A ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libraries.io/github/flend/roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://btdig.com/e861a6e424fd95649f396a14b849468f26f4e32f/skkk=006?q=SKKK-006 ...'
b' |MSG| Scraping https://www.linuxsecrets.com/archlinux-wiki/wiki.archlinux.org/index.php/User:Axper/sandbox/listofgamescompatible.html ...'
b' |MSG| Scraping https://followsite.net/www.flend.net ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.docslides.com/web-brogue ...'
b'!!FAIL!! Failed to load http://www.docslides.com/web-brogue'
HTTPConnectionPool(host='www.docslides.com', port=80): Max retries exceeded with url: /web-brogue (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x1154fc438>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known',))
b' |MSG| Scraping https://slideplayer.com/slide/12461644/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/iyzPQdRK ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.statustats.com/www.flend.net ...'
b' |MSG| Found article'
b' |MSG| Scraping http://scrabblex.com/word/FLATLINERL ...'
b' |MSG| Found article'
b' |MSG| Scraping http://xitfilms.ru/kino/7DRL+2014+-+Hellspace ...'
b' |MSG| Found article'
Name Forays into Norrendrin
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://forays.github.io/
Status stable
Released 2012/01/28
Updated 2015/11/06
Developer Derrick Creamer
Theme Fantasy
Influences ADOM, DoomRL, Angband, Brogue
Name: 183, dtype: object
http://duckduckgo.com/html/?q=%22Forays%20into%20Norrendrin%22%20AND%20Derrick%20Creamer%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forays.github.io/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2015/11/11/forays-into-norrendrin-free-roguelike/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamebreakingnews.net/2015/11/free-broguelike-forays-into-norrendrin/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fitweb.me/best/forays-into-norrendrin/ ...'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4787.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4787.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4787.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://linksforreddit.com/url/https:%2F%2Fforays.github.io%2F?page=0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/Forays ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=pPpJc5U9djs ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ocdgamer.dk/game/?id=1791 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libraries.io/github/Forays ...'
b' |MSG| Found article'
b' |MSG| Scraping https://it-clip.net/rev/forays+2/ ...'
b' |MSG| Scraping http://sax.smotrim.online/game/brogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bitbucket.org/derrickcreamer/forays-into-norrendrin ...'
b' |MSG| Scraping https://devhub.io/repos/DJgamer98-awesome-roguelikes ...'
b' |MSG| Found article'
b' |MSG| Scraping http://repo.manaplus.org/sdtraces/BottinHTML/Bottin_D-J_files/Forays_into_Norrendrin-11061.html ...'
b' |MSG| Found article'
b" |MSG| Scraping http://igrovoetv.ru/video/yOgDiarEQOwo/-/Let's%20Play:%20Forays%20into%20Norrendrin%20-%20Ep.3 ..."
b' |MSG| Found article'
b' |MSG| Scraping http://gameruns.ru/player.php?video=u4jstf3Gufg ...'
b' |MSG| Found article'
b' |MSG| Scraping http://longlist.org/forays ...'
b' |MSG| Scraping https://roguelikedeveloper.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.spiralofhope.com/10757/forays-into-norrendrin.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thclips.com/rev/ultima+ratio+regum+ita/ ...'
b' |MSG| Scraping https://slclip.com/rev/rogue+like/ ...'
b' |MSG| Scraping http://redditmetrics.com/r/foraysforum ...'
b' |MSG| Found article'
b' |MSG| Scraping http://zagame.net/video/pPpJc5U9djs ...'
Name Fortresslike
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://pinegala.blogspot.com/
Status alpha
Released 2012/00/00
Updated 1000/00/00
Developer chewymouse
Theme Fantasy
Influences Dwarf Fortress, Crawl
Name: 184, dtype: object
http://duckduckgo.com/html/?q=%22Fortresslike%22%20AND%20chewymouse%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Fragility
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://vedrl.wordpress.com/
Status stable
Released 2014/3/7
Updated 1000/00/00
Developer Vedor
Theme glass, gemgaws, masters of glass
Influences 1HP game
Name: 185, dtype: object
http://duckduckgo.com/html/?q=%22Fragility%22%20AND%20Vedor%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Friends of Yendor
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://76.172.6.15:3000/
Status alpha
Released 2010/00/00
Updated 2012/00/00
Developer RylandAlmanza
Theme High Fantasy
Influences Angband, NetHack
Name: 186, dtype: object
http://duckduckgo.com/html/?q=%22Friends%20of%20Yendor%22%20AND%20RylandAlmanza%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Frozen Depths
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://frozendepths.net/
Status stable
Released 2006/05/21
Updated 2014/08/29
Developer Glowie
Theme Fantasy
Influences ADOM, Nethack
Name: 187, dtype: object
http://duckduckgo.com/html/?q=%22Frozen%20Depths%22%20AND%20Glowie%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Fujo
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sheep.art.pl/Fujo
Status stable
Released 2013/12/16
Updated 2014/01/06
Developer Radomir Dopieralski
Theme Fantasy
Influences Rogue
Name: 188, dtype: object
http://duckduckgo.com/html/?q=%22Fujo%22%20AND%20Radomir%20Dopieralski%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name FuryBand
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.furytech.net/furyband/furyband.php
Status beta
Released 2005/10/11
Updated 2007/12/05
Developer The Fury (''thefury''@''furytech.net'')
Theme Fantasy(Tolkien)
Influences ToME 2
Name: 189, dtype: object
http://duckduckgo.com/html/?q=%22FuryBand%22%20AND%20The%20Fury%20%28%27%27thefury%27%27%40%27%27furytech.net%27%27%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name GSN2band
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.angband.pwp.blueyonder.co.uk/gsn2.html
Status stable
Released 2000/11/10
Updated 2000/11/10
Developer Gwidon S. Naskrent
Theme Fantasy
Influences Angband 2.9.1, GSN2band
Name: 190, dtype: object
http://duckduckgo.com/html/?q=%22GSN2band%22%20AND%20Gwidon%20S.%20Naskrent%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name GSNband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.angband.pwp.blueyonder.co.uk/gsn.html
Status stable
Released 1998/11/15
Updated 2000/2/21
Developer Gwidon S. Naskrent
Theme Fantasy
Influences Zangband 2.2.8
Name: 191, dtype: object
http://duckduckgo.com/html/?q=%22GSNband%22%20AND%20Gwidon%20S.%20Naskrent%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name gTile
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://game.tyler-dewitt.com/roguelike.htm
Status alpha
Released 2008/07/21
Updated 1000/00/00
Developer Tyler de Witt
Theme Fantasy
Influences NaN
Name: 192, dtype: object
http://duckduckgo.com/html/?q=%22gTile%22%20AND%20Tyler%20de%20Witt%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Ganymede Gate
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ganymedegate.com/
Status alpha-futuristic
Released 2015/00/00
Updated 2015/12/02
Developer Chiguireitor
Theme Science Fiction, Futuristic
Influences DoomRL/Cogmind
Name: 193, dtype: object
http://duckduckgo.com/html/?q=%22Ganymede%20Gate%22%20AND%20Chiguireitor%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Gatecrashers
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://forums.te4.org/viewtopic.php?f=40&t=39055
Status major
Released 2013/11/08
Updated 2013/11/26
Developer GuyNamedJoe
Theme Fantasy
Influences TOME 4, Shiren the Wanderer
Name: 194, dtype: object
http://duckduckgo.com/html/?q=%22Gatecrashers%22%20AND%20GuyNamedJoe%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name GearHead
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gearheadrpg.com/
Status stable
Released 2002/00/00
Updated 2016/06/27
Developer Joseph Hewitt
Theme Science Fiction, Mecha, Futuristic
Influences Hack
Name: 195, dtype: object
http://duckduckgo.com/html/?q=%22GearHead%22%20AND%20Joseph%20Hewitt%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name GearHead 2
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gearheadrpg.com/
Status beta
Released 2007/11/00
Updated 2017/12/03
Developer Joseph Hewitt
Theme Science Fiction, Mecha, Futuristic
Influences ??
Name: 196, dtype: object
http://duckduckgo.com/html/?q=%22GearHead%202%22%20AND%20Joseph%20Hewitt%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name GearHead Caramel
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gearheadrpg.com/
Status alpha
Released 2017/00/00
Updated 2018/06/17
Developer Joseph Hewitt
Theme Science Fiction, Mecha, Futuristic
Influences Hack, ADOM
Name: 197, dtype: object
http://duckduckgo.com/html/?q=%22GearHead%20Caramel%22%20AND%20Joseph%20Hewitt%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Gerband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gerbil1.btinternet.co.uk/_sgg/m1_1.htm
Status stable
Released 2005/00/00
Updated 2006/00/00
Developer CosmicGerbil
Theme Fantasy(D&D)
Influences NaN
Name: 198, dtype: object
http://duckduckgo.com/html/?q=%22Gerband%22%20AND%20CosmicGerbil%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Goblin Camp
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.goblincamp.com/
Status alpha
Released 2010/7/31
Updated 2012/6/17
Developer Ilkka Halila
Theme Fantasy
Influences Dwarf Fortress, Anno 1404, Dungeon Keeper
Name: 199, dtype: object
http://duckduckgo.com/html/?q=%22Goblin%20Camp%22%20AND%20Ilkka%20Halila%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Goblin Men
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://jakobvirgil.blogspot.com/2013/09/there-...
Status alpha
Released 1000/00/00
Updated 2013/00/00
Developer Jakob Virgil
Theme Goblins and Fruit
Influences Omega, Adom, Larn, Dwarf Fortress, Christina R...
Name: 200, dtype: object
http://duckduckgo.com/html/?q=%22Goblin%20Men%22%20AND%20Jakob%20Virgil%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Goblinhack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://goblinhack.sourceforge.net/
Status stable
Released 2006/08/27
Updated 2009/03/08
Developer Neil McGill
Theme Fantasy
Influences NaN
Name: 201, dtype: object
http://duckduckgo.com/html/?q=%22Goblinhack%22%20AND%20Neil%20McGill%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Goingband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.thangorodrim.net/goingband.html
Status beta
Released 1000/00/00
Updated 1999/03/11
Developer Prfnoff
Theme NaN
Influences 2.8.3
Name: 202, dtype: object
http://duckduckgo.com/html/?q=%22Goingband%22%20AND%20Prfnoff%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Golden Age: Endless Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rpgmaker.net/games/3043/
Status stable
Released 2011/04/25
Updated 2011/04/25
Developer psy_wombats, Enker
Theme Fantasy
Influences Golden Age, ADOM, Deep Realm Heroes
Name: 203, dtype: object
http://duckduckgo.com/html/?q=%22Golden%20Age%3A%20Endless%20Dungeon%22%20AND%20psy_wombats%20OR%20%20Enker%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.northwesternenergy.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.tennis.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.northwell.edu/find-care/find-a-doctor ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rutheckerdhall.com/ ...'
b' |MSG| Scraping https://www.imdb.com/title/tt5433600/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.cabelas.com/category/Boat-Anchoring/104188680.uts ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.henryanker.com/3rd_Activities.html ...'
b' |MSG| Scraping https://www.anker.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lakeviewhospital.com/ ...'
b'!!FAIL!! Failed to load https://lakeviewhospital.com/'
HTTPSConnectionPool(host='lakeviewhospital.com', port=443): Max retries exceeded with url: / (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0x114d592b0>, 'Connection to lakeviewhospital.com timed out. (connect timeout=10.1)'))
b' |MSG| Scraping https://www.msdperformance.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.law.cornell.edu/rules/frcrmp/rule_32 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mypetchicken.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.bbc.co.uk/news/world/us_and_canada ...'
b' |MSG| Found article'
b' |MSG| Scraping http://sonic.wikia.com/wiki/Sonic_the_Hedgehog_(Archie) ...'
b' |MSG| Found article'
b' |MSG| Scraping https://services.amazon.com/amazon-payments/payments-home.html ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=p8XP7A7kvzM ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.com/Anker/pages/2528932011 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.walmart.com/browse/auto-tires/spark-plugs/91083_1074765_1043583 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.marlinmag.com/top-diesel-fishing-boat-engines ...'
b' |MSG| Found article'
b' |MSG| Scraping http://megaman.wikia.com/wiki/Robot_Master ...'
b' |MSG| Found article'
b' |MSG| Scraping http://megaman.wikia.com/wiki/Proto_Man ...'
b' |MSG| Found article'
b' |MSG| Scraping https://api.jquery.com/keypress/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.belmond.com/hotels/africa/south-africa/cape-town/belmond-mount-nelson-hotel/dining ...'
b' |MSG| Found article'
Name Golden Krone Hotel
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://store.steampowered.com/app/497800
Status alpha
Released 2014/03/16
Updated 2017/08/08
Developer Jeremiah Reid
Theme Horror (Gothic)
Influences Dracula, Romanian mythology
Name: 204, dtype: object
http://duckduckgo.com/html/?q=%22Golden%20Krone%20Hotel%22%20AND%20Jeremiah%20Reid%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.jere.in/11 ...'
b' |MSG| Scraping https://store.steampowered.com/app/497800/Golden_Krone_Hotel/ ...'
b' |MSG| Scraping http://www.goldenkronehotel.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/review/golden-krone-hotel.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/golden-krone-hotel ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/497800/discussions/0/1479857071247319660/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=Mr1fU-OJNt4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2016/10/14/golden-krone-hotel-vampire-roguelike/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesbae.com/golden-krone-hotel/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.50gameslike.com/games-like/golden-krone-hotel ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/goldenkronegame ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/golden-krone-hotel.html ...'
b' |MSG| Scraping https://www.thepiratedownload.us/download-golden-krone-hotel-download-free/ ...'
b' |MSG| Scraping http://www.igggamesfree.com/action/golden-krone-hotel-free-download-pc-game/ ...'
b' |MSG| Scraping https://envul.com/golden-krone-hotel-change-notes/ ...'
b' |MSG| Scraping https://www.reddit.com/r/goldenkronehotel/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nullgame.com/indie-games/golden-krone-hotel ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2017/08/episode-138-golden-krone-hotel.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=bcnnwFO5Rvo ...'
b' |MSG| Found article'
b' |MSG| Scraping https://isthereanydeal.com/game/goldenkronehotel/history/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.newgamesbox.net/golden-krone-hotel-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamereactor.eu/reviews/603973/Golden+Krone+Hotel/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/adventure/golden-krone-hotel ...'
b' |MSG| Found article'
b' |MSG| Scraping https://cracked-games.org/golden-krone-hotel/ ...'
Name Goldfish
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ondras.github.io/goldfish/
Status stable
Released 2014/03/14
Updated 2014/03/14
Developer Ondras
Theme Internal
Influences NaN
Name: 205, dtype: object
http://duckduckgo.com/html/?q=%22Goldfish%22%20AND%20Ondras%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.wikihow.com/Tell-if-Your-Goldfish-Is-a-Male-or-Female ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/ondras/goldfish ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ondras.github.io/goldfish/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.freeindiegam.es/2014/04/goldfish-ondras/ ...'
b' |MSG| Scraping http://www.thegoldfishreport.com/ ...'
b' |MSG| Scraping https://www.newgrounds.com/portal/view/682287 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thelastgoldfish.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://goldfish2care4.com/goldfish-types.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://puregoldfish.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.businessinsider.com/giant-goldfish-problem-in-australia-and-colorado-2016-8?op=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=9Xx5JxzmkUc ...'
b' |MSG| Scraping https://www.commonsensemedia.org/book-reviews/the-fourteenth-goldfish ...'
b' |MSG| Scraping https://goldfishgazette.wordpress.com/2009/09/12/how-much-water-do-goldfish-need/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.about-goldfish.com/common-goldfish-diseases.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://goldfishabode.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.middleschoolmathmoments.com/2013/05/ratios-and-proportionsand-goldfish.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.goldfish.com.co/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://7goldfish.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.fishnet.org/goldfish.htm ...'
b' |MSG| Scraping http://goldfish.media/ ...'
b' |MSG| Scraping http://www.goldfish-market.hk/history.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.solidgoldfish.com/2013/02/goldfish-internal-anatomy.html ...'
b' |MSG| Scraping https://concordiaabchao.wordpress.com/2016/11/08/john-podesta-goldfish-14-and-osiris/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/thegoldfishreport/ ...'
Name Gone Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://apps.ape-apps.com/gone-rogue/
Status beta
Released 2015/12/16
Updated 2016/5/22
Developer Ape Apps
Theme Fantasy
Influences Diablo, Pixel Dungeon
Name: 206, dtype: object
http://duckduckgo.com/html/?q=%22Gone%20Rogue%22%20AND%20Ape%20Apps%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://apps.ape-apps.com/gone-rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://market.ape-apps.com/gone-rogue.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.microsoft.com/bn-bd/p/gone-rogue/9nblggh58qqp ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.ape.games.gonerogue&hl=en_GB ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.microsoft.com/en-in/p/gone-rogue/9nblggh58qqp ...'
b' |MSG| Found article'
b' |MSG| Scraping https://appadvice.com/game/app/gone-rogue/1068609695 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/news/2018/09/guide_upcoming_nintendo_switch_games_and_accessories_for_september_and_october ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itunes.apple.com/us/app/gone-rogue/id1068609695 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gone-rogue.apk.cafe/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gone-rogue.apk.dog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.appannie.com/apps/google-play/app/com.ape.games.gonerogue/ ...'
b' |MSG| Scraping https://steamcommunity.com/app/415200/discussions/0/142260895146399646/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamedevgonerogue.blogspot.com/2013/07/the-hardest-part-of-making-games.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gonerogue.ca/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.com/Ape-Apps-Gone-Rogue/dp/B019GAQUEO ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/34930815-gone-rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.androidappsgame.net/gone-rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/goneroguegames/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=f-bgpfGHysc ...'
b' |MSG| Scraping http://appshopper.com/games/gone-rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://scholarlykitchen.sspnet.org/2017/03/09/citation-cartel-or-editor-gone-rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gone-rogue.droidinformer.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apk.house/gone-rogue ...'
b'!!FAIL!! Failed to load https://apk.house/gone-rogue'
HTTPSConnectionPool(host='apk.house', port=443): Max retries exceeded with url: /gone-rogue (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', '')],)",),))
b' |MSG| Scraping http://vsrecommendedgames.wikia.com/wiki/Android ...'
b' |MSG| Found article'
Name Gore Grounds
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://www.dropbox.com/s/ebq64u5dq23qspt/Gore...
Status info
Released 2015/3/14
Updated 2015/03/14
Developer Badscribbler Badscribbler@gmail.com
Theme Gore, Arcade
Influences Splatter house
Name: 207, dtype: object
http://duckduckgo.com/html/?q=%22Gore%20Grounds%22%20AND%20Badscribbler%20Badscribbler%40gmail.com%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Grendel's Mother
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/dreamhack/downloads/list
Status alpha
Released 2009/09/23
Updated 2009/09/23
Developer elig
Theme Literature
Influences Crawl
Name: 208, dtype: object
http://duckduckgo.com/html/?q=%22Grendel%27s%20Mother%22%20AND%20elig%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://markrathbun.blog/2011/10/31/grade-ii/ ...'
b' |MSG| Found article'
Name Grid
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.caffeineoverdose.me/
Status stable
Released 2015/00/00
Updated 2015/01/16
Developer Andrew Wright (aka roocey)
Theme Science Fiction
Influences Brogue, The Binding of Isaac, and the Slimy Li...
Name: 209, dtype: object
http://duckduckgo.com/html/?q=%22Grid%22%20AND%20Andrew%20Wright%20%28aka%20roocey%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://storygrid.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gridbyexample.com/ ...'
b' |MSG| Scraping https://gridbyexample.com/learn/ ...'
b' |MSG| Scraping https://grid.ac/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://medium.com/@aofstad/making-and-breaking-the-grid-ee0741f86dc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://andrewedwardfish.wordpress.com/2014/04/08/magazine-layout-and-grid-thumbnails/ ...'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=740607289 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.aquarico.com/web-storage/publications/aquarius%20grid%20paper%20mar%2098.pdf ...'
b' |MSG| Scraping https://www.ag-grid.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.fangraphs.com/blogs/david-wright-the-mets-and-the-cost-of-goodwill/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alistapart.com/article/the-story-of-css-grid-from-its-creators ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.cssgrid.cc/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.tumblr.com/search/and+mike+and+andrew.+i+mean+where+were+they%3F+%3A%28 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://developers.google.com/web/updates/2017/01/css-grid ...'
b' |MSG| Found article'
b' |MSG| Scraping https://cssgrid.io/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.redblobgames.com/pathfinding/grids/graphs.html ...'
b' |MSG| Scraping http://dictionary.sensagent.com/Andrew%20Wright%20(artist)/en-en/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://css-tricks.com/snippets/css/complete-guide-grid/ ...'
b' |MSG| Scraping https://stackoverflow.com/questions/19163214/kohonen-self-organizing-maps-determining-the-number-of-neurons-and-grid-size ...'
b' |MSG| Found article'
b' |MSG| Scraping https://graphicdesign.stackexchange.com/q/37425 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://theworldisurban.com/2011/06/history-of-the-grid/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://erigrid.eu/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://offgridwarrior.com/ ...'
b' |MSG| Found article'
Name Grue the monster – roguelike underworld RPG
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://coolai.itch.io/grue-roguelike
Status stable
Released 2018/005/01
Updated 2018/00/00
Developer Denis Anohin
Theme Fantasy, Dark Fantasy
Influences Demon Tactic, Gruesome
Name: 210, dtype: object
http://duckduckgo.com/html/?q=%22Grue%20the%20monster%20%E2%80%93%20roguelike%20underworld%20RPG%22%20AND%20Denis%20Anohin%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://coolai.itch.io/grue-roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=rpg.roguelike.grue.monster&hl=et ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/grue-the-monster-roguelike-underworld-rpg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkpure.com/grue-the-monster-%E2%80%93-roguelike-underworld-rpg/rpg.roguelike.grue.monster ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rpg-roguelike-grue-monster.ar.9apps.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.apkhere.com/app/rpg.roguelike.grue.monster ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/monster-hunter-world/best-monsters ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/grue-the-monster-roguelike-rpg/339550 ...'
b' |MSG| Scraping https://apkgk.com/rpg.roguelike.grue.monster ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.mob.org.ru/game/grue_the_monster_roguelike_underworld_rpg.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apksfull.com/grue-the-monster-roguelike-underworld-rpg/rpg.roguelike.grue.monster ...'
b'!!FAIL!! Failed to load https://apksfull.com/grue-the-monster-roguelike-underworld-rpg/rpg.roguelike.grue.monster'
HTTPSConnectionPool(host='apksfull.com', port=443): Max retries exceeded with url: /grue-the-monster-roguelike-underworld-rpg/rpg.roguelike.grue.monster (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', '')],)",),))
b' |MSG| Scraping https://www.appannie.com/en/apps/google-play/app/rpg.roguelike.grue.monster/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://seedroid.com/en/65481/rpg.roguelike.grue.monster.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://myppc.ru/45651-grue-the-monster-roguelike-underworld-rpg-v103.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://worldgameszone.com/grue-the-monster-roguelike-underworld-rpg/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://akula.in/content/games/file/android-grue_the_monster_roguelike_underworld_rpg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.slidedb.com/games/grue-the-monster-roguelike-underworld-rpg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=LAupWOnVxfk ...'
b' |MSG| Scraping https://grue-the-monster-roguelike-underworld-rpg.kr.uptodown.com/android/download ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.apkmonk.com/app/rpg.roguelike.grue.monster/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.apkclean.com/apk/3920250/grue-the-monster-%E2%80%93-roguelike-underworld-rpg.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gameapks.com/grue-the-monster-roguelike-underworld-rpg-apk-android/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkzz.com/grue-the-monster-roguelike-underworld-rpg-apk-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://eapcgames.com/grue-the-monster-roguelike-underworld-rpg/ ...'
b' |MSG| Found article'
Name Gruesome
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gamesofgrey.com/
Status beta
Released 2009/01/00
Updated 2009/01/21
Developer Darren Grey
Theme Fantasy, Stealth, Reverse role
Influences ADOM, Zork
Name: 211, dtype: object
http://duckduckgo.com/html/?q=%22Gruesome%22%20AND%20Darren%20Grey%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.gamesofgrey.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://listverse.com/2016/04/09/10-gruesome-post-mortem-punishments/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://adventuregamers.com/articles/view/17557 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/articles/post-mortem-preview/1100-2896569/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamezebo.com/2009/01/07/post-mortem-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://history-behind-game-of-thrones.com/characters/grrm-symbol-names ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.frictionlessinsight.com/archives/2003/04/post-mortem-rev.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/post-mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://big-games.info/game/Post_Mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://time.com/4874424/greyscale-game-of-thrones-history/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamelengths.com/games/playtimes/Post+Mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.iflscience.com/editors-blog/science-behind-most-gruesome-deaths-game-thrones/ ...'
b'!!FAIL!! Failed to load https://www.iflscience.com/editors-blog/science-behind-most-gruesome-deaths-game-thrones/'
HTTPSConnectionPool(host='www.iflscience.com', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping https://www.youtube.com/watch?v=n8xXpcQDGhQ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamepressure.com/games/post-mortem/z22385 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.newyorker.com/tech/elements/the-strange-and-gruesome-story-of-the-greenland-shark-the-longest-living-vertebrate-on-earth ...'
b' |MSG| Scraping http://www.bingapis.com/images/search?q=Post-Mortem+Gruesome+Pictures&FORM=RESTAB ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/46550/Post_Mortem/ ...'
b' |MSG| Scraping https://www.hrkgame.com/en/games/product/post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://historyundusted.wordpress.com/2014/11/01/victorian-post-mortem-photography/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/8829.Past_Mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.webwiki.com/gruesomegames.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dailymail.co.uk/news/article-4036412/Touching-morbid-gruesome-19th-century-portraits-dead-children-helped-parents-recover-bereavement.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://watchersonthewall.com/game-thrones-post-mortem-oathbreaker/ ...'
b' |MSG| Found article'
Name Guild
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.roguetemple.com/guild
Status beta
Released 2008/02/10
Updated 2008/02/10
Developer Antoine
Theme Fantasy
Influences NaN
Name: 212, dtype: object
http://duckduckgo.com/html/?q=%22Guild%22%20AND%20Antoine%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://mortem.us/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki.guildwars2.com/wiki/Personal_story ...'
b' |MSG| Scraping http://www.gameai.com/wiki/index.php?title=History_Of_Game_AI ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.albiononline.com/index.php/Thread/51965-Ad-Mortem-Inimicus/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/channel/UC0rvvO0MV8RLfm04kIJgsZA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.alteredgamer.com/other-mmorpg/28629-history-timeline-and-post-mortem-of-tabula-rasa/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.garagegames.com/community/forums/viewthread/37703 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quora.com/At-Vainglory-game-what-are-the-difference-between-Guild-and-Team?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.guild.org.au/training ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2017/10/10/the-guild-3-early-access-review/ ...'
b' |MSG| Scraping https://www.gamespot.com/reviews/the-guild-2-review/1900-6160504/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mpforum.forumotion.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rocketjump.com/blog/vghs-post-mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamedevelopersguild.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gemsofwar.zendesk.com/hc/en-us/articles/218001183-Completing-Basic-and-Legendary-Guild-Tasks ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wowprogress.com/guild/eu/ravencrest/Angeli+Mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamersguildamerica.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gugcstudentguild.com.au/ ...'
b' |MSG| Scraping http://8guild.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://postmortem.apexmega.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://lancerus.wikia.com/wiki/Morgana_Mortem ...'
b' |MSG| Scraping http://wiki.godvillegame.com/Guilds ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gunsoficarus.com/december-alliance-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.bostonpostmortem.org/boston-area-game-companies/ ...'
b' |MSG| Found article'
Name Gumband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://angband.oook.cz/gumband/
Status stable
Released 2000/11/24
Updated 2010/01/02
Developer R. Dan Henry, previously Joseph William Dixon
Theme Fantasy
Influences ZAngband 2.1.1c
Name: 213, dtype: object
http://duckduckgo.com/html/?q=%22Gumband%22%20AND%20R.%20Dan%20Henry%20OR%20%20previously%20Joseph%20William%20Dixon%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://blog.roguetemple.com/2007/09/29/gumband-230-released/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ficlips.com/rev/gumband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thegumband.com/ ...'
b' |MSG| Scraping http://www.thangorodrim.net/gumband.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rec.games.roguelike.angband.narkive.com/EoSfdMwZ/mutations-gumband-request-for-input ...'
b' |MSG| Found article'
b' |MSG| Scraping http://orthanc.chat.ru/variants.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ru-ru.facebook.com/thegumband/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=2Fsf6-906Lg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tune.pk/video/6218576/gumband-e-khizra ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wiktionary.org/wiki/gumband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kinja.com/gumband/discussions ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.pronouncekiwi.com/Gumband ...'
b' |MSG| Scraping https://www.wordaz.com/Gumband.html ...'
b' |MSG| Scraping https://torrent.cricket/c41b4e07192074c1e9c6c2d251c4ca2f41af792b ...'
b' |MSG| Scraping http://cdn.preterhuman.net/texts/computing/gopher-archive/caramba.cs.tu-berlin.de/aminet/game/role/gumband.readme ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.omnilexica.com/?q=gumband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freethesaurus.com/Gumband ...'
b' |MSG| Scraping https://lotsofwords.com/definition/gumband ...'
b' |MSG| Scraping https://everything2.com/user/Skunko/writeups/Gumband ...'
b' |MSG| Found article'
b' |MSG| Scraping http://pittsburghspeech.pitt.edu/pittsburghspeech_dictionary.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://universalium.academic.ru/19882/gumband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.torrentdownloads.me/torrent/1663226126/Hitomi+Tanaka+-+Gumband ...'
b'!!FAIL!! Failed to load https://www.torrentdownloads.me/torrent/1663226126/Hitomi+Tanaka+-+Gumband'
HTTPSConnectionPool(host='www.torrentdownloads.me', port=443): Max retries exceeded with url: /torrent/1663226126/Hitomi+Tanaka+-+Gumband (Caused by SSLError(CertificateError("hostname 'www.torrentdownloads.me' doesn't match 'www.tvicb.com'",),))
b' |MSG| Scraping http://www.statemaster.com/encyclopedia/Gumband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/sUvPtmBB ...'
b' |MSG| Found article'
Name Hack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://homepages.cwi.nl/~aeb/games/hack/hack.html
Status major
Released 1984/12/17
Updated 1985/07/23
Developer Jay Fenlason, // Kenny Woodland,<br/> // Mike ...
Theme Fantasy
Influences Rogue
Name: 214, dtype: object
http://duckduckgo.com/html/?q=%22Hack%22%20AND%20Jay%20Fenlason%20OR%20%20//%20Kenny%20Woodland%20OR%20%3Cbr/%3E%20//%20Mike%20Thome%3Cbr/%3E%20//%20and%20Jon%20Payne%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Hack of Life
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/isharacomix/hack-of-life
Status stable
Released 2010/4/6
Updated 2010/4/12
Developer Barry
Theme Programming Game, Cellular Automaton
Influences Conway's Game of Life
Name: 215, dtype: object
http://duckduckgo.com/html/?q=%22The%20Hack%20of%20Life%22%20AND%20Barry%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Hack 'n Slash Online
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.hackslashonline.com/
Status alpha
Released 2011/009/24
Updated 2011/009/24
Developer The Piper
Theme multiplayer dungeon crawler
Influences NaN
Name: 216, dtype: object
http://duckduckgo.com/html/?q=%22Hack%20%27n%20Slash%20Online%22%20AND%20The%20Piper%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.pinterest.com/pin/321233385892648066/ ...'
b' |MSG| Found article'
Name HamQuest: The Porkseeker Saga Chapter I
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.playdeez.com/hamquest.html
Status beta
Released 2009/01/00
Updated 2010/02/06
Developer PlayDeez Games
Theme Fantasy
Influences HeroQuest
Name: 217, dtype: object
http://duckduckgo.com/html/?q=%22HamQuest%3A%20The%20Porkseeker%20Saga%20Chapter%20I%22%20AND%20PlayDeez%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=307.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=307.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=307.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.dualshockers.com/the-mooseman-review-switch-pc-xbox-one/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/ARLv0.8changelog.txt ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
Name handhRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/jarcane/handhRL
Status beta
Released 2014/07/07
Updated 2014/07/16
Developer JArcane (John S. Berry III)
Theme Science Fiction, Alien Planets
Influences Hulks and Horrors, D&D, Alien, classic Rogue
Name: 218, dtype: object
http://duckduckgo.com/html/?q=%22handhRL%22%20AND%20JArcane%20%28John%20S.%20Berry%20III%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://github.com/jarcane/handhRL ...'
b' |MSG| Scraping https://github.com/jarcane/handhRL/releases ...'
b' |MSG| Found article'
b' |MSG| Scraping https://devhub.io/developer/jarcane ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libraries.io/github/jarcane ...'
b' |MSG| Scraping http://www.bedroomwallpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/communities/110946379100484610747/stream/883fba3f-c269-4d4a-8033-80004d8cd55b ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4223.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4223.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4223.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://devhub.io/repos/jarcane-handhRL ...'
b' |MSG| Scraping http://www.loginella.com/a/HANDH ...'
b' |MSG| Scraping https://plus.google.com/+AnnaiaBerry/posts/Hg1GESjdHU9 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/+Hulksandhorrors/posts/8Kb2LJvqwzK ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.bedroomwallpress.com/2014/07/hulks-and-horrors-is-now-computer-game.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/jarcane/handhRL/tree/master/releases ...'
b' |MSG| Found article'
Name Happy Hunting
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://arid.sourceforge.net/
Status beta
Released 2004/00/00
Updated 2006/07/16
Developer NaN
Theme Fantasy
Influences NaN
Name: 219, dtype: object
http://duckduckgo.com/html/?q=%22Happy%20Hunting%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.rottentomatoes.com/m/happy_hunting/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thesaurus.plus/related/happy_hunting_ground/next_world ...'
b' |MSG| Scraping https://horrorfreaknews.com/happy-hunting-2016-review/12631 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://geeks.media/movie-review-happy-hunting ...'
b' |MSG| Scraping https://happyhuntingtv.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hollywoodreporter.com/review/happy-hunting-1042333 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.escapegames24.com/2018/09/monkey-go-happy-stage-219.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nyanglish.com/happy-hunting ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forgottenrealms.wikia.com/wiki/Beastlands_(plane) ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amctheatres.com/movies/happy-hunting-54818 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.azlyrics.com/lyrics/sparks/happyhuntingground.html ...'
b' |MSG| Scraping https://www.facebook.com/HappyHuntingTV/ ...'
b' |MSG| Scraping https://yts.gs/movies/happy-hunting-2017 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://happyhunting.co/ ...'
b' |MSG| Scraping https://happyhunting.bandcamp.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/title/tt5189770/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itunes.apple.com/us/movie/happy-hunting/id1267538493 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://genius.com/Janelle-monae-violet-stars-happy-hunting-lyrics ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki2.org/en/Happy_hunting_ground ...'
b' |MSG| Found article'
b' |MSG| Scraping https://digitalguardian.com/blog/seek-evil-and-ye-shall-find-guide-cyber-threat-hunting-operations ...'
b' |MSG| Found article'
b' |MSG| Scraping http://huntinjack.com/ ...'
b' |MSG| Scraping https://ramblingfoxreviews.blogspot.com/2015/05/assassins-creed-3-animal-and-hunting.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.aiowiki.com/wiki/Happy_Hunting ...'
b' |MSG| Found article'
Name Harmonia
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.harmonia-online.net/
Status alpha
Released 2012/08/11
Updated 2012/08/17
Developer Baroque Creations
Theme Fantasy
Influences Shining Force III, Nethack, MUDs
Name: 220, dtype: object
http://duckduckgo.com/html/?q=%22Harmonia%22%20AND%20Baroque%20Creations%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://baroque-creations.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://baroque-creations.com/games/harmonia-tactics/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://baroque-creations.com/press/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://baroque-creations.com/harmonia-tactics/harmonia-tactics-lives/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://panharmonia.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.harmonia-tactics.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dev.harmonia.la/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://erogedownload.com/downloads/harmonia/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://harmonia.wikia.com/ ...'
b' |MSG| Scraping https://harmonia-game.com/ ...'
b' |MSG| Scraping https://www.indiedb.com/games/harmonia-tactics ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hardcoregamer.com/2016/10/14/review-harmonia/230436/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://harmonia.io/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://hddgames.com/harmonia/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.harmonia.life/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.harmoniarosales.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.queroharmonia.com.br/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.harmonia-bg.com/ ...'
b' |MSG| Scraping https://harmonia.si/ ...'
b' |MSG| Scraping http://harmoniaschool.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.harmonia.ca/ ...'
b' |MSG| Scraping https://store.steampowered.com/app/421660/Harmonia/ ...'
b' |MSG| Scraping http://harmoniacordis.org/ ...'
Name Harrowed
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gamesofgrey.com/blog
Status beta
Released 2011/10/29
Updated 2011/10/29
Developer Darren Grey
Theme Minimalist, Puzzle
Influences NaN
Name: 221, dtype: object
http://duckduckgo.com/html/?q=%22Harrowed%22%20AND%20Darren%20Grey%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.gamesofgrey.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=1932.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=1932.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=1932.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.dictionary.com/browse/harrowed ...'
b' |MSG| Found article'
b' |MSG| Scraping http://allaboutcasualgame.com/2016/11/harrowed-halls-review.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/+Harrowed ...'
b' |MSG| Found article'
b' |MSG| Scraping https://harrowed.bandcamp.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.britannica.com/topic/harrow-agriculture ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=9h0IS_9nyyY ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/games-list.html ...'
b' |MSG| Scraping https://www.thefreedictionary.com/harrow ...'
b' |MSG| Scraping https://www.bloodborne-wiki.com/2015/11/harrowed-hood.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wiktionary.org/wiki/harrow ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ffxiv.gamerescape.com/wiki/Harrowed_Hunter ...'
b' |MSG| Scraping https://wikidiff.com/harrowed/arrowed ...'
b' |MSG| Scraping https://thesaurus.plus/synonyms/harrowed ...'
b' |MSG| Scraping https://bloodborne.wiki.fextralife.com/Harrowed+Set ...'
b' |MSG| Scraping https://theharrowed.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pathfinderwiki.com/wiki/Harrow ...'
b' |MSG| Scraping https://harrowedband.blogspot.com/ ...'
b' |MSG| Scraping http://www.harrowedhalls.com/wordpress/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ludeon.com/forums/index.php?topic=34257.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://harrowedlines.wordpress.com/ ...'
b' |MSG| Scraping http://soulslore.wikidot.com/data:simon-the-harrowed ...'
b' |MSG| Found article'
b' |MSG| Scraping https://1d4chan.org/wiki/Harrowed ...'
b' |MSG| Found article'
Name Heart of Nirn
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://heartofnirn.blogspot.com/
Status alpha
Released 2012/11/24
Updated 2012/12/09
Developer Jack A. Lope
Theme Fantasy
Influences Elder Scrolls Universe and Lore, Dungeon Crawl...
Name: 222, dtype: object
http://duckduckgo.com/html/?q=%22Heart%20of%20Nirn%22%20AND%20Jack%20A.%20Lope%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Hell Angband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status stable
Released 1000/00/00
Updated 1000/00/00
Developer NaN
Theme NaN
Influences NaN
Name: 223, dtype: object
http://duckduckgo.com/html/?q=%22Hell%20Angband%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Hellmouth (and Meat Arena)
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/Eronarn/Hellmouth
Status alpha
Released 2012/00/00
Updated 2012/00/00
Developer Eronarn
Theme Exploration and character history
Influences European and Christian history and mythology, ...
Name: 224, dtype: object
http://duckduckgo.com/html/?q=%22Hellmouth%20%28and%20Meat%20Arena%29%22%20AND%20Eronarn%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Hengband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status stable
Released 1000/00/00
Updated 1000/00/00
Developer NaN
Theme NaN
Influences NaN
Name: 225, dtype: object
http://duckduckgo.com/html/?q=%22Hengband%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Herculeum
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/tuturto/pyherc
Status alpha
Released 2012/02/19
Updated 2015/10/26
Developer tuturto
Theme Fantasy
Influences Nethack
Name: 226, dtype: object
http://duckduckgo.com/html/?q=%22Herculeum%22%20AND%20tuturto%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Hero Trap
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://noisyowl.com/herotrap/
Status beta
Released 2017/03/11
Updated 2017/04/03
Developer Justin White (jtolmar)
Theme Traditional
Influences Rogue, Brogue, Shiren
Name: 227, dtype: object
http://duckduckgo.com/html/?q=%22Hero%20Trap%22%20AND%20Justin%20White%20%28jtolmar%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Heroic Adventure!
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.heroicadventure.com/
Status alpha
Released 2003/00/00
Updated 2005/04/26
Developer Chris Williams
Theme Fantasy
Influences ADOM
Name: 228, dtype: object
http://duckduckgo.com/html/?q=%22Heroic%20Adventure%21%22%20AND%20Chris%20Williams%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.patreon.com/heroicadventure ...'
b' |MSG| Found article'
b' |MSG| Scraping http://geekswithblogs.net/cwilliams/archive/2005/07/06/45539.aspx ...'
b' |MSG| Found article'
b' |MSG| Scraping https://social.msdn.microsoft.com/Forums/en-US/c30e8f6a-a039-4e3e-8355-04339649a43b/create-a-game-in-vb-2008 ...'
b' |MSG| Scraping http://geekswithblogs.net/cwilliams/archive/2005/05/28/40854.aspx ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/BungieHelp/status/996486156756766720 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.codemag.com/article/1711101 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/chrisgwilliams?tab=repositories ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blogs.msdn.microsoft.com/briankel/tag/coding4funnews/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fanbros.com/new-mutants-trailer/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://xbox.create.msdn.com/community/team ...'
b' |MSG| Scraping https://www.goodreads.com/book/show/525223.Earthdawn ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.co.uk/Beginning-Role-Playing-Games-Programming/dp/1590596269 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcreview.co.uk/threads/console-app-problem.1393215/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kickstarter.com/projects/gorillagames/battlestations-second-edition-classic-board-game-r/updates ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blogs.msdn.microsoft.com/briankel/page/23/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nukethefridge.com/trailer-poster-spongebob-movie-sponge-water-hits/ ...'
b' |MSG| Scraping https://www.sfgate.com/entertainment/article/KID-WATCH-An-advisory-for-parents-on-current-2936967.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/84187.Swords_Against_Darkness ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/movies/collection/promotion_40017ac_the_huntsman_drafting?hl=en_US ...'
b' |MSG| Scraping https://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&pub=5574933636&toolid=10001&campid=5336728181&customid=&mpre=https%3A%2F%2Fwww%2Eebay%2Ecom%2Fb%2F1990-1999-HD-DVDs%2F617%2Fbn%5F78088777 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/books/collection/books_clusters_mrl_rt_1EA11DEF_25FA4BE1_6784B253?hl=en_US ...'
b' |MSG| Scraping https://dvd.netflix.com/BrowseGenres/Fantasy/323 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://notonlyvideogames.com/category/reviews/ ...'
Name HexRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.hexatron.com/hexrogue/index.html
Status stable
Released 2003/00/00
Updated 2003/00/00
Developer Hexatron
Theme Fantasy
Influences NaN
Name: 229, dtype: object
http://duckduckgo.com/html/?q=%22HexRogue%22%20AND%20Hexatron%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.hexatron.com/hexrogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://britzl.github.io/roguearchive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikedevelopment.org/archive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wowprogress.com/character/us/area-52/Hexrogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freebasic.net/forum/viewtopic.php?t=13893 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.the-sos.com/clave/hexatron+rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/RoguelikeMegaCollection2015 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=17629.0 ...'
b' |MSG| Scraping https://neonstreet.net/download.html ...'
b'!!FAIL!! Failed to load https://neonstreet.net/download.html'
HTTPSConnectionPool(host='neonstreet.net', port=443): Max retries exceeded with url: /download.html (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://alexvampire.wordpress.com/2016/01/24/roguelike-mega-collection-700-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://keyoptimize.com/site-info/hexatron.com ...'
b'!!FAIL!! Failed to load https://keyoptimize.com/site-info/hexatron.com'
HTTPSConnectionPool(host='keyoptimize.com', port=443): Max retries exceeded with url: /site-info/hexatron.com (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://cs.rin.ru/forum/viewtopic.php?f=38&t=76423 ...'
b' |MSG| Scraping https://www.gog.com/forum/might_and_magic_series/95_perfect ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelike.weebly.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelike.blog.hu/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/iyzPQdRK ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
Name Hieroglyphika
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://mhanka.com/
Status stable
Released 2016/02/03
Updated 2016/08/15
Developer M. Hanka
Theme Egyptian Mythology
Influences NaN
Name: 230, dtype: object
http://duckduckgo.com/html/?q=%22Hieroglyphika%22%20AND%20M.%20Hanka%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://store.steampowered.com/app/434880/Hieroglyphika/ ...'
b' |MSG| Scraping http://blast-games.ru/obzori/igra-hieroglyphika-obzor-2016/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mhanka.com/hieroglyphika ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesbae.com/hieroglyphika-v130/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamess.org/hieroglyphika-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.steamkiwi.com/app/434880/history ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/rpg/hieroglyphika ...'
b' |MSG| Found article'
b' |MSG| Scraping http://m-torrent.org/load/pc_games/easy_game/hieroglyphika_2016_pc_124_repack_ot_other_39_s/99-1-0-24420 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dominickamin.com/hieroglyphika ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gameseira.com/games/rpg/hieroglyphika ...'
b' |MSG| Found article'
b' |MSG| Scraping http://opencritic.com/game/2261/hieroglyphika ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.digitallydownloaded.net/2016/02/review-hieroglyphika-pc.html ...'
b' |MSG| Scraping http://www.gameguides.cc/Article/tvgame/allvideogametwo/201603/201336.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamepressure.com/games/hieroglyphika/ze4ad5 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/hieroglyphika.html ...'
b' |MSG| Scraping http://bestgamer.net/load/1/strategija/64981-hieroglyphika-2016-pc-repack-ot-others.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/hieroglyphika/review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nnm-club.me/forum/viewtopic.php?t=1032794 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgame.com/hieroglyphika ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/hieroglyphika ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefaqs.gamespot.com/pc/185858-hieroglyphika ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamepciso.com/hieroglyphika-pc-full-iso-free/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://cs.rin.ru/forum/viewtopic.php?f=10&t=70551 ...'
b' |MSG| Scraping http://www.metacritic.com/game/pc/hieroglyphika ...'
b' |MSG| Found article'
Name Hokuto no Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://hokuto-no-rogue.sourceforge.net/
Status alpha
Released 2008/02/18
Updated 2012/03/17
Developer Alessio Carotenuto
Theme Science Fiction (post apocalyptic)
Influences Fallout
Name: 231, dtype: object
http://duckduckgo.com/html/?q=%22Hokuto%20no%20Rogue%22%20AND%20Alessio%20Carotenuto%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.winsite.com/Games/Puzzle/Hokuto-no-Rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.java-gaming.org/index.php?&topic=19746.0 ...'
b' |MSG| Scraping http://www.javagametome.com/game.html?id=183 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.softwaregeek.com/download/hokuto_no_rogue.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://hokuto-no-rogue.soft112.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=2244.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=2244.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=2244.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://ftparmy.com/193208-hokuto-no-rogue.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.softpile.com/hokuto-no-rogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://shareme.com/details/hokuto-no-rogue.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.openhub.net/p/hokuto-no-rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mirsofta.ru/soft/Hokutoo-Rogue-Pre_Alpha.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/forums/index.php?threads/the-codex-of-roguelikes.71097/page-29 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.filebuzz.com/fileinfo/372984/Hokuto_no_Rogue.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rogue.ab-archive.net/ ...'
b' |MSG| Scraping http://www.pageglance.com/hokuto-no-rogue.sourceforge.net ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.statustats.com/www.hokuto-no-rogue.sourceforge.net ...'
b' |MSG| Found article'
b' |MSG| Scraping https://uaclips.com/rev/fist+of+the+north+star+game+trailer/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://thelist.roguelikedevelopment.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alexvampire.wordpress.com/2016/01/24/roguelike-mega-collection-700-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.oioup.com/hokuto-no-rogue.sourceforge.net ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://sourceforge.mirrorservice.org/h/ho/hokuto-no-rogue/hokuto-no-rogue/?C=N;O=A ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.steambanners.booru.org/index.php?page=post&s=view&id=1497 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.odownloadx.com/hokuto-no-rogue-060/198503.html ...'
b' |MSG| Found article'
Name Hordes of Tarshish
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://tarshish.us/
Status alpha
Released 2010/03/29
Updated 2010/12/29
Developer atrodo
Theme Post-Apocalypse
Influences NaN
Name: 232, dtype: object
http://duckduckgo.com/html/?q=%22Hordes%20of%20Tarshish%22%20AND%20atrodo%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.indiedb.com/games/hordes-of-tarshish ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamemux.com/games/1497/hordes-of-tarshish.html ...'
b' |MSG| Scraping http://bay12forums.com/smf/index.php?topic=85630.0 ...'
b' |MSG| Scraping https://www.moddb.com/games/hordes-of-tarshish/stats ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=YO7Kd13dfKE ...'
b' |MSG| Scraping https://www.moddb.com/games/hordes-of-tarshish/articles ...'
b' |MSG| Scraping https://www.webwiki.com/tarshish.us ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/hordes-of-tarshish/images/in-game-screen-shot ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/hordes-of-tarshish/images/in-game-screen-shot ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/hordes-of-tarshish/news ...'
b' |MSG| Scraping https://www.indiedb.com/games/hordes-of-tarshish/mods ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/frontier-worlds ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/star-sonata-ii/ ...'
b' |MSG| Scraping https://www.indiedb.com/games/imperialism-online ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/orbs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/moonforge ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/duovoxel ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/star-sonata-ii ...'
b' |MSG| Scraping http://creative.atrodo.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.roguetemple.com/category/releases-wire/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/ythmeven ...'
b' |MSG| Found article'
Name Hulk Infection
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://zlastrona.pl/hi/
Status beta
Released 2008/08/15
Updated 2008/08/15
Developer Micha?‚ Przyby?‚owicz
Theme Futuristic
Influences NaN
Name: 233, dtype: object
http://duckduckgo.com/html/?q=%22Hulk%20Infection%22%20AND%20Micha%3F%E2%80%9A%20Przyby%3F%E2%80%9Aowicz%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name HumFallRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://vedrl.wordpress.com/
Status stable
Released 2013/03/07
Updated 2014/09/11
Developer Vedor
Theme post-apocalyptic fiction
Influences Fallout, some dungeon crawlers
Name: 234, dtype: object
http://duckduckgo.com/html/?q=%22HumFallRL%22%20AND%20Vedor%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Hundred
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sourceforge.net/projects/hundredrl/
Status beta
Released 2014/12/00
Updated 2014/12/00
Developer Noam Weisberg
Theme Dying Earth
Influences DoomRL
Name: 235, dtype: object
http://duckduckgo.com/html/?q=%22Hundred%22%20AND%20Noam%20Weisberg%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Hunger Games
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.astrolog.org/labyrnth/daedalus/hung...
Status stable
Released 2013/03/11
Updated 2016/09/01
Developer Walter D. Pullen
Theme modern
Influences NetHack, The Hunger Games
Name: 236, dtype: object
http://duckduckgo.com/html/?q=%22The%20Hunger%20Games%22%20AND%20Walter%20D.%20Pullen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name HunterRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/No
Status stable
Released 2012/03/17
Updated 2012/03/17
Developer Alex Elson
Theme Wilderness
Influences Dwarf Fortress, Ascii Wilderness
Name: 237, dtype: object
http://duckduckgo.com/html/?q=%22HunterRL%22%20AND%20Alex%20Elson%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Hydra Slayer
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.roguetemple.com/z/hydra.php
Status stable
Released 2010/07/26
Updated 2016/11/12
Developer Z
Theme Fantasy (Greek mythology), Hydras, Mathematics
Influences MathRL
Name: 238, dtype: object
http://duckduckgo.com/html/?q=%22Hydra%20Slayer%22%20AND%20Z%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name HyperRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.roguetemple.com/z/hyper.php
Status stable
Released 2011/11/07
Updated 2018/5/26
Developer Z
Theme Mathematics, multiple worlds, a bit Minimalist
Influences DROD, and many others
Name: 239, dtype: object
http://duckduckgo.com/html/?q=%22HyperRogue%22%20AND%20Z%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name iLarn
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguelike-palm.sourceforge.net/iLarn/in...
Status beta
Released 2001/00/00
Updated 2001/06/16
Developer NaN
Theme Fantasy
Influences ULarn
Name: 240, dtype: object
http://duckduckgo.com/html/?q=%22iLarn%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name iNetHack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/inethack/
Status stable
Released 2009/00/00
Updated 2009/08/31
Developer Dirk Zimmermann (port)
Theme Fantasy
Influences NetHack (port)
Name: 241, dtype: object
http://duckduckgo.com/html/?q=%22iNetHack%22%20AND%20Dirk%20Zimmermann%20%28port%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name iRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguelike-palm.sourceforge.net/iRogue/
Status stable
Released 2000/00/00
Updated 2002/05/11
Developer NaN
Theme Fantasy
Influences NaN
Name: 242, dtype: object
http://duckduckgo.com/html/?q=%22iRogue%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Iter Vehemens ad Necem
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://attnam.com/
Status stable
Released 2001/12/10
Updated 2018/3/24
Developer Timo Kiviluoto and others
Theme Fantasy
Influences NetHack, Monty Python, 1984
Name: 243, dtype: object
http://duckduckgo.com/html/?q=%22Iter%20Vehemens%20ad%20Necem%22%20AND%20Timo%20Kiviluoto%20and%20others%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Ighalsk
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sourceforge.net/projects/ighalsk/
Status alpha
Released 2009/02/26
Updated 2012/07/31
Developer LukeSchubert
Theme Fantasy
Influences Angband (plus variants), Kingdom Hearts, Battl...
Name: 244, dtype: object
http://duckduckgo.com/html/?q=%22Ighalsk%22%20AND%20LukeSchubert%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Ignite
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://alexbard.org.ua/
Status alpha
Released 2012/00/00
Updated 2012/00/00
Developer Alex Bardanov
Theme Dark Fantasy
Influences dungeon crawl
Name: 245, dtype: object
http://duckduckgo.com/html/?q=%22Ignite%22%20AND%20Alex%20Bardanov%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Incavead: infinite cave adventure
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dungeon.name/
Status beta
Released 2013/006/18
Updated 2015/00/00
Developer tkatchev
Theme Fantasy
Influences Diggr, Nethack
Name: 246, dtype: object
http://duckduckgo.com/html/?q=%22Incavead%3A%20infinite%20cave%20adventure%22%20AND%20tkatchev%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Incursion
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://incursion-roguelike.net/
Status beta
Released 2007/07/28
Updated 2015/08/14
Developer Julian Mensch, Richard Tew
Theme Fantasy
Influences Omega, D20
Name: 247, dtype: object
http://duckduckgo.com/html/?q=%22Incursion%22%20AND%20Julian%20Mensch%20OR%20%20Richard%20Tew%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Infra Arcana
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/infraarcana/
Status stable
Released 2011/06/05
Updated 2017/11/06
Developer Martin Törnqvist
Theme H.P. Lovecraft, horror, mystery, cults
Influences H.P. Lovecraft, Horror movies, The PC game 'Bl...
Name: 248, dtype: object
http://duckduckgo.com/html/?q=%22Infra%20Arcana%22%20AND%20Martin%20T%C3%B6rnqvist%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Intelligence: Rae Lives
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.github.com/littleglassdiode/irl
Status alpha
Released 2012/09/15
Updated 2012/09/15
Developer Ratfink
Theme Science Fiction
Influences Rogue, Intelligence
Name: 249, dtype: object
http://duckduckgo.com/html/?q=%22Intelligence%3A%20Rae%20Lives%22%20AND%20Ratfink%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name Interhack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sourceforge.net/projects/interhack/
Status alpha
Released 2000/09/03
Updated 2014/12/12
Developer Nathan Daniels
Theme NaN
Influences Nethack
Name: 250, dtype: object
http://duckduckgo.com/html/?q=%22Interhack%22%20AND%20Nathan%20Daniels%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.interhack.com/ ...'
b' |MSG| Scraping http://www.interhack.net/ ...'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4474.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4474.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4474.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.interhack.net/pubs/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://interhack.io/ ...'
b' |MSG| Scraping https://taeb.github.io/interhack/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://interhack.us/ ...'
b'!!FAIL!! Failed to load http://interhack.us/'
HTTPConnectionPool(host='interhack.us', port=80): Max retries exceeded with url: / (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x114ffb400>, 'Connection to interhack.us timed out. (connect timeout=10.1)'))
b' |MSG| Scraping https://www.linkedin.com/company/interhack ...'
b' |MSG| Scraping https://www.abeldanger.org/middle-templars-mad-cow-and-cypherpunk/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nethack.wikia.com/wiki/Interhack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/interhacks/posts ...'
b' |MSG| Scraping https://nethackwiki.com/wiki/Interhack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indeed.com/cmp/Interhack-Corporation/faq ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.webwiki.com/interhack.net ...'
b' |MSG| Scraping https://www.leadwerks.com/community/profile/13413-interhack/ ...'
b' |MSG| Scraping http://nickfinder.com/Interhack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/TAEB/Interhack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/hashtag/interhack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/103109862644726546213 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://devhub.io/repos/Sec42-interhack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.academia.edu/4903671/How_Thieves_Targeted_e_Bay_Users_but_Got_Stopped_Instead_Interhack-June_2003_ ...'
b'!!FAIL!! Failed to load https://www.academia.edu/4903671/How_Thieves_Targeted_e_Bay_Users_but_Got_Stopped_Instead_Interhack-June_2003_'
HTTPSConnectionPool(host='www.academia.edu', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://sartak.org/2011/01/interhack-and-taeb-postmortem.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.hgexperts.com/experts.asp ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.paysa.com/salaries/interhack ...'
Name Into the Labyrinth
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/[http://w...
Status alpha
Released 2013/09/22
Updated 2013/11/00
Developer Badscribbler intothelabyrinthkeeper@gmail.com
Theme Fantasy, Party based
Influences Etrian Odyssey, Devil Survivor, SMT games, Blo...
Name: 251, dtype: object
http://duckduckgo.com/html/?q=%22Into%20the%20Labyrinth%22%20AND%20Badscribbler%20intothelabyrinthkeeper%40gmail.com%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Invader Tactics
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dto.github.com/notebook/invader.html
Status alpha
Released 2009/04/04
Updated 2009/04/04
Developer David O'Toole
Theme sci-fi
Influences NaN
Name: 252, dtype: object
http://duckduckgo.com/html/?q=%22Invader%20Tactics%22%20AND%20David%20O%27Toole%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://mirsofta.ru/soft/Invader-Tactics.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://thelist.roguelikedevelopment.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.coursehero.com/file/20329418/Osborne-Research-2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nationstates.net/page=dispatch/id=1063019 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://assets.ctfassets.net/w9b4jh0bui0y/6P0woY6O5yq4scM8ImCmME/5e645ee657e7ef3898c6f693384ef3e7/9789048523047.pdf ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dailymail.co.uk/sport/football/article-6123513/Neymar-hugs-young-pitch-invader-makes-CRY-joy.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://uk-films.com/watch/invader+plays ...'
b' |MSG| Found article'
b' |MSG| Scraping https://link.springer.com/chapter/10.1007/978-3-319-27893-3_4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://commgames.weebly.com/blog/rogue-invader-torent ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/sM02GyUi ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ebooks.com/2111040/digital-passages/leurs-koen/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://crazygames164.weebly.com/blog/rogue-invader-torrent ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dreaminvaders.com/cbdownloadfiles/telepathy&dreaminvader.pdf ...'
b' |MSG| Scraping https://w-dog.info/wallpaper/space-invader-tactics-minimalism-game-monster-the-inscription-arrows-grey-background-letters/id/8455/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/faqs/2007/dai-senryaku-vii-walkthrough-821368 ...'
Name IronBand
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://angband.oook.cz/ironband/
Status stable
Released 2007/11/22
Updated 2012/11/32
Developer Antoine
Theme Fantasy
Influences NPPAngband 0.5.0
Name: 253, dtype: object
http://duckduckgo.com/html/?q=%22IronBand%22%20AND%20Antoine%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://angband.oook.cz/ironband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ironbandmusic.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ironband.irontemplates.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://themeforest.net/item/ironband-music-band-dj-wordpress-theme/5398241 ...'
b' |MSG| Scraping https://www.rocketdownload.com/program/ironband-616822.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wowhead.com/npc=15567/elder-ironband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.macshareware.com/review/ironband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=4tGcjWPIgjA ...'
b' |MSG| Scraping https://roguelikedeveloper.blogspot.com/2007/11/are-you-ironman-enough.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.filebuzz.com/fileinfo/290353/Ironband_For_Mac.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wow.gamepedia.com/Quest:Ironband_Wants_You! ...'
b' |MSG| Found article'
b' |MSG| Scraping https://vanilla-twinhead.twinstar.cz/?quest=707 ...'
b' |MSG| Scraping https://www.supercheats.com/pc/questions/fate/116800/list-of-items.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://classicdb.ch/?quest=739 ...'
b' |MSG| Scraping https://www.facebook.com/ironbandmusic/?rc=p ...'
b' |MSG| Scraping http://wowwiki.wikia.com/wiki/Elder_Ironband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.deviantart.com/ironband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://naturalonespodcast.blogspot.com/2012/06/grun-skytoucher-ironband-and-brief.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.themetix.com/ironband ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nickfinder.com/ironband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/Onslaught/279247 ...'
b' |MSG| Scraping https://www.charliesparx.com.au/video/preview-of-ironband-2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://db.rising-gods.de/?quest=302 ...'
b' |MSG| Scraping https://www.downloadcollection.com/ironband_for_mac.htm ...'
b' |MSG| Found article'
Name Iron Fist
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.caffeineoverdose.me/
Status stable
Released 2015/00/00
Updated 2015/02/24
Developer Andrew Wright (aka roocey)
Theme Science Fiction
Influences Brogue, The Binding of Isaac, and the Slimy Li...
Name: 254, dtype: object
http://duckduckgo.com/html/?q=%22Iron%20Fist%22%20AND%20Andrew%20Wright%20%28aka%20roocey%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://wikiofthrones.com/9246/jessica-henwick-interview-game-of-thrones/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theverge.com/2017/3/8/14848336/iron-fist-review-netflix-show-marvel ...'
b' |MSG| Found article'
b' |MSG| Scraping https://winteriscoming.net/2016/10/12/celeb-roundup-iron-fist-trailer-finn-jones-kit-harington-augustman-ian-mcelhinney-krypton-liam-cunningham/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.bustle.com/p/finn-jones-game-of-thrones-finale-theory-is-super-dark-way-too-real-11478494 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesradar.com/iron-fist-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.independent.co.uk/arts-entertainment/tv/features/iron-fist-finn-jones-interview-marvel-netflix-diversity-casting-reviews-jessica-henwick-game-of-a7632861.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.digitalspy.com/tv/iron-fist/review/a823374/iron-fist-review-netflix-marvel/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moviefone.com/2017/06/27/game-of-thrones-iron-fist-jessica-henwick/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.cinemablend.com/television/1629340/how-game-of-thrones-will-affect-iron-fist-according-to-finn-jones ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/articles/2017/02/24/iron-fist-explained-who-is-the-marvelnetflix-hero ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theatlantic.com/entertainment/archive/2017/03/iron-fist-netflix-review/519936/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ew.com/tv/2017/03/10/iron-fist-ew-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://wegotthiscovered.com/tv/8-characters-who-should-appear-in-marvels-iron-fist/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hollywoodreporter.com/review/marvels-iron-fist-review-984200 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=g7_YLA8m-Xo ...'
b' |MSG| Scraping http://www.ironfist.se/ ...'
b' |MSG| Scraping https://www.inverse.com/article/29493-iron-fist-drunk-guy-fight-lewis-tan ...'
b' |MSG| Scraping https://www.express.co.uk/showbiz/tv-radio/783050/Finn-Jones-Game-of-Thrones-character-Iron-Fist-Loras-Tyrell ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.vulture.com/2016/02/finn-jones-iron-fist.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.vox.com/culture/2017/3/19/14961738/iron-fist-marvel-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://screenrant.com/kevin-spacey-robin-wright-return/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://marvelcinematicuniverse.wikia.com/wiki/Iron_Fist ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mashable.com/2017/06/27/jessica-henwick-game-of-thrones-iron-fist/ ...'
b' |MSG| Found article'
Name Iso-Angband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.funkelwerk.de/site/index.php?option...
Status alpha
Released 2010/08/23
Updated 2010/08/23
Developer Hansjörg Malthaner
Theme Fantasy
Influences Angband 2.9.3
Name: 255, dtype: object
http://duckduckgo.com/html/?q=%22Iso-Angband%22%20AND%20Hansj%26ouml%3Brg%20Malthaner%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name JauntTrooper series
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/There%20i...
Status stable
Released 1994/00/00
Updated 1000/00/00
Developer David Scheifler
Theme Science Fiction
Influences Doomsday 2000
Name: 256, dtype: object
http://duckduckgo.com/html/?q=%22JauntTrooper%20series%22%20AND%20David%20Scheifler%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Javelin
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://javelinrl.wordpress.com/
Status stable
Released 2015/09/01
Updated 2016/07/15
Developer Alex Henry
Theme Fantasy
Influences D&D, d20. Tyrant
Name: 257, dtype: object
http://duckduckgo.com/html/?q=%22Javelin%22%20AND%20Alex%20Henry%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name js-like
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/js-like/
Status beta
Released 2011/06/27
Updated 2011/09/18
Developer Ondras
Theme Classic
Influences ADOM, JADE
Name: 258, dtype: object
http://duckduckgo.com/html/?q=%22js-like%22%20AND%20Ondras%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name jsMoria
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://foont.net/moria
Status alpha
Released 2011/00/00
Updated 2010/07/00
Developer Ithildin (Brian Ramsay)
Theme Fantasy
Influences Moria
Name: 259, dtype: object
http://duckduckgo.com/html/?q=%22jsMoria%22%20AND%20Ithildin%20%28Brian%20Ramsay%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Kaduria
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://koti.mbnet.fi/paulkp/kaduria/index.htm
Status alpha
Released 1995/00/00
Updated 2005/06/00
Developer Paul Pekkarinen
Theme Fantasy
Influences NaN
Name: 260, dtype: object
http://duckduckgo.com/html/?q=%22Kaduria%22%20AND%20Paul%20Pekkarinen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Kamyran's Eye
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://keye.phk.at/
Status stable
Released 2006/00/00
Updated 2006/08/04
Developer NaN
Theme Fantasy
Influences NaN
Name: 261, dtype: object
http://duckduckgo.com/html/?q=%22Kamyran%27s%20Eye%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.nibyblog.pl/obszerna-lista-natywnych-gier-na-linuxa-2167.html ...'
b' |MSG| Found article'
Name Katabatia
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sites.google.com/site/malcontentsgames/...
Status beta
Released 1000/00/00
Updated 2012/00/00
Developer Malcontent
Theme Fantasy, Greek
Influences Rogue, Sword of Fargoal
Name: 262, dtype: object
http://duckduckgo.com/html/?q=%22Katabatia%22%20AND%20Malcontent%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://sites.google.com/site/malcontentsgames/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rgcd.co.uk/2012/07/c64-16kb-cartridge-game-development.html ...'
b' |MSG| Scraping https://www.rgcd.co.uk/2012/09/c64-16kb-cartridge-game-development.html ...'
b' |MSG| Scraping https://csdb.dk/release/?id=110628 ...'
b' |MSG| Found article'
Name KeeperRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://keeperrl.com/
Status alpha
Released 2013/11/05
Updated 2018/04/02
Developer Michał Brzozowski
Theme Fantasy
Influences Dungeon Keeper, Nethack
Name: 263, dtype: object
http://duckduckgo.com/html/?q=%22KeeperRL%22%20AND%20Micha%C5%82%20Brzozowski%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://keeperrl.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/tag/michal-brzozowski/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lgdb.org/developer/micha%C5%82-brzozowski ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/329970/discussions/0/1479856439034642642/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://keeperrl.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamegrin.com/previews/keeperrl-preview/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/329970/KeeperRL/ ...'
b' |MSG| Scraping https://rawg.io/games/keeperrl ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2016/04/episode-120-keeperrl.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://game-mod.ru/game-keeperrl/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=5eUVp1mDwCU ...'
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/aQWNKz9z/keeperrl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.steamkiwi.com/app/635540/history ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.qwant.com/game/keeperrl?l=br ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamingonlinux.com/articles/keeperrl-an-open-source-mix-dungeon-keeper-and-dwarf-fortress-of-needs-indiegogo-love.3457/page=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/rpg/keeperrl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://torrentz.run/torrent/10114716/KeeperRL_Alpha7 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thepiratedownload.us/download-keeperrl-alpha-23-download-free/ ...'
b' |MSG| Scraping http://torrentmaster.org/3662-keeperrl-2015.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/keeperrl.html ...'
b' |MSG| Scraping https://yepdownload.com/keeperrl ...'
b'!!FAIL!! Failed to load https://yepdownload.com/keeperrl'
HTTPSConnectionPool(host='yepdownload.com', port=443): Max retries exceeded with url: /keeperrl (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://keeperrl.en.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/keeperrl ...'
b' |MSG| Found article'
b' |MSG| Scraping http://n4g.com/news/1704076/keeperrl-preview-gamegrin ...'
b' |MSG| Found article'
Name Kerkerkruip
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://kerkerkruip.org/
Status stable
Released 2011/10/01
Updated 2014/04/13
Developer Victor Gijsbers, Kerkerkruip team
Theme Sword and sorcery
Influences interactive fiction and roguelikes
Name: 264, dtype: object
http://duckduckgo.com/html/?q=%22Kerkerkruip%22%20AND%20Victor%20Gijsbers%20OR%20%20Kerkerkruip%20team%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://kerkerkruip.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kerkerkruip.org/about/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/i7/kerkerkruip/blob/master/Kerkerkruip.materials/Extensions/Victor%20Gijsbers/Kerkerkruip%20Help%20and%20Hints.i7x ...'
b' |MSG| Scraping https://kerkerkruip.org/downloads/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/i7/kerkerkruip ...'
b' |MSG| Found article'
b' |MSG| Scraping https://emshort.blog/2014/02/13/kerkerkruip-revisited/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.freeindiegam.es/2012/05/kerkerkruip-victor-gijsbers/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ifwiki.org/index.php/Kerkerkruip ...'
b' |MSG| Scraping http://ifdb.tads.org/viewgame?id=f7zdhxmiraht53d1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://kerkerkruip.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=3351.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=3351.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=3351.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://textadventures.co.uk/games/view/QfAvXH_1s0_124KAHeYAsw/kerkerkruip ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamingphilosopher.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2016/06/15/if-only-text-adventures-for-people-who-hate-guessing-the-verb/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.igdb.com/games/kerkerkruip ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sockscap64.com/games/game/kerkerkruip/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/kerkerkruip ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.openhub.net/p/kerkerkruip ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ifcomp.org/comp11/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/110783394196376640516 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.giantbomb.com/kerkerkruip/3030-50115/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://epvp.com/game/50115/kerkerkruip/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.wurb.com/stack/archives/2046 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lists.debian.org/debian-devel-games/2014/10/msg00008.html ...'
Name Kharne
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://kharne-rl.blogspot.com/
Status alpha
Released 2009/03/00
Updated 2011/7/15
Developer Dave Moore
Theme Fantasy
Influences NaN
Name: 265, dtype: object
http://duckduckgo.com/html/?q=%22Kharne%22%20AND%20Dave%20Moore%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://kharne-rl.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.abandonware.ws/kharne_the_revelation.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://theworldofblueteam.wikia.com/wiki/Kharne ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/kharne1983/status/1030099119279366145 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=90.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=90.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=90.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://kharne.livejournal.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rlgclub.ru/wiki/Kharne ...'
b' |MSG| Found article'
b' |MSG| Scraping http://goldenageofgames.com/kharne-the-revelation/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forums.warforge.ru/index.php?showtopic=63692 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://40kproject.blogspot.com/2011/01/darnath-lysander-vs-kharne-betrayer.html ...'
b' |MSG| Scraping https://www.dakkadakka.com/dakkaforum/posts/list/372209.page ...'
b' |MSG| Scraping https://kharne-rl.blogspot.ru/2009/10/configuring-and-compiling-kharne-brief.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://medium.com/@Kharne1983 ...'
b' |MSG| Scraping https://ru-ru.facebook.com/Kharne-213208595383628/ ...'
b' |MSG| Scraping https://www.ofdiceandpens.com/2015/10/18/kharne-the-betrayer/ ...'
b' |MSG| Scraping http://kharne-rl.blogspot.com.danidns.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.bolterandchainsword.com/topic/162941-a-new-wrinkle-with-kharne/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=vwPkS93osHY ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=G6c5bZLZrHc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://superuser.com/users/628675/kharne ...'
b' |MSG| Found article'
b' |MSG| Scraping https://stackoverflow.com/users/5447909/kharne ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/features/6089198/p-19.html/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://khorn8werewolf.blogspot.com/ ...'
b' |MSG| Found article'
Name KleinRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://dl.dropboxusercontent.com/u/6433222/kl...
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Quendus
Theme Claustrophobia
Influences Crawl, Angband, DoomRL, TreasuRL
Name: 266, dtype: object
http://duckduckgo.com/html/?q=%22KleinRL%22%20AND%20Quendus%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=3882.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=3882.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=3882.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/05arUBKG/kleinrl-7drl-failure-14drl-success ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wortguru.com/?letters=Kleinrl%2B ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2016/06/episode-123-geometry-in-roguelikes.html ...'
b' |MSG| Found article'
Name kokarage
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://panyara.hp.infoseek.co.jp/kbdown.html
Status beta
Released 2004/11/09
Updated 2006/04/01
Developer kokarage
Theme Fantasy
Influences Hengband
Name: 267, dtype: object
http://duckduckgo.com/html/?q=%22kokarage%22%20AND%20kokarage%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Kollum: The Pressure Valve
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://indiedb.com/games/kollum-the-pressure-v...
Status beta
Released 2013/00/00
Updated 2012/12/16
Developer Ananasblau (talk)
Theme Arcade
Influences Cardinal Quest
Name: 268, dtype: object
http://duckduckgo.com/html/?q=%22Kollum%3A%20The%20Pressure%20Valve%22%20AND%20Ananasblau%20%28talk%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name Kunoichi
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.roguelikeeducation.org/9.html
Status stable
Released 2014/03/16
Updated 2014/03/25
Developer Tectorum
Theme Pseudo-Historical
Influences Rouge, A DAY @ THE ZOO
Name: 269, dtype: object
http://duckduckgo.com/html/?q=%22Kunoichi%22%20AND%20Tectorum%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://sukebei.nyaa.si/view/2548545 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forum.blackdesertonline.com/index.php?/topic/138398-ninja-or-kunoichi/ ...'
b' |MSG| Scraping https://studiotectorum.itch.io/kunoichi ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jellyfishstation.com/2014/05/27/akane-the-kunoichi-and-why-cover-art-is-important/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.kunoichi.gr/ ...'
b' |MSG| Scraping http://www.kunoichi.fr/ ...'
b' |MSG| Scraping https://kunoichi.shop/ ...'
b' |MSG| Scraping https://www.reddit.com/r/blackdesertonline/comments/5fedl3/how_is_kunoichi/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://kunoichi.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bdo.mmo-fashion.com/kunoichi-strength-of-heve/ ...'
b' |MSG| Scraping http://factionelite.com/forums/index.php?/topic/365-kunoichi-tips/ ...'
b' |MSG| Scraping http://www.90llll.com/htm/2015/5/31/s04/343546.html ...'
b' |MSG| Scraping https://gamefaqs.gamespot.com/top10/2823-the-top-10-playable-kunoichi-possible-spoilers ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pcgamingwiki.com/wiki/Akane_the_Kunoichi ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.giantbomb.com/kunoichi/3015-4596/games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/291130/Akane_the_Kunoichi/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=7g-2HW-zolI ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.bingapis.com/images/search?q=Kunoichi+Games&FORM=RESTAB ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wn.com/Kunoichi ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.blackdesertfoundry.com/kunoichi-class-guide/ ...'
b' |MSG| Scraping https://www.studiotectorum.com/kunoichi/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mmoculture.com/2015/07/black-desert-new-kunoichi-class-challenges-veteran-gamer-controls/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://kunoichi.net/ ...'
b' |MSG| Scraping http://aqwwiki.wikidot.com/kunoichi ...'
b' |MSG| Found article'
Name Labyrinth of Reptoran
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rogue-life.ourden.org/labyrinth_of_rept...
Status beta
Released 2006/00/00
Updated 2008/00/00
Developer Gamer 2k4
Theme Fantasy,
Influences ADOM, ToME, Nethack, GearHead
Name: 270, dtype: object
http://duckduckgo.com/html/?q=%22Labyrinth%20of%20Reptoran%22%20AND%20Gamer%202k4%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://reptoran.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=140.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=140.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=140.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/sKGwW12n/labyrinth-of-reptoran-public-beta-demo-released ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping https://reptoran.blogspot.com/2008/08/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://pullzab.zz.vc/bclj ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelike.weebly.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
Name L&L - Labyrinths & Legends
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://lnl.sourceforge.jp/en/
Status stable
Released 1993/002/23
Updated 2010/006/04
Developer bowkenken
Theme Fantasy
Influences Rogue, Moria, Nethack, Torneko: The Last Hope
Name: 271, dtype: object
http://duckduckgo.com/html/?q=%22L%26L%20-%20Labyrinths%20%26%20Legends%22%20AND%20bowkenken%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://sourceforge.net/projects/lnl/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rocketdownload.com/query.php?q=legends+of+fall&page=2 ...'
b' |MSG| Found article'
Name Lair of the Cultists
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://groups.google.com/group/rec.games.rogue...
Status alpha
Released 2009/02/20
Updated 2009/02/20
Developer Narf the Mouse
Theme Fantasy
Influences NaN
Name: 272, dtype: object
http://duckduckgo.com/html/?q=%22Lair%20of%20the%20Cultists%22%20AND%20Narf%20the%20Mouse%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.kotaku.co.uk/2018/08/31/everything-you-need-to-know-going-into-destiny-2-forsaken ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.nwo-uncensored.com/so-now-that-the-set-is-fixed-how-can-we-reclaim-the-apocalypse-dagger/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.cbr.com/classic-supervillain-lair-comeback-joker-shocker/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://brreporter.com/word/cultists+lair ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.enagames.com/game-walkthrough/games4king-battle-man-escape-walkthrough ...'
b' |MSG| Found article'
b' |MSG| Scraping https://stolenhistory.org/threads/fake-history-of-alexander-column-in-saint-petersburg.354/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.oneangrygamer.net/2018/09/xbox-games-with-gold-for-september-fail-hard-and-gamers-hate-the-lineup/67951/ ...'
b' |MSG| Scraping https://brreporter.com/word/cultist+s+lair ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theroar.com.au/2018/09/02/what-do-sundays-games-mean-for-the-nrl-finals/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamerevolution.com/features/424463-donut-countys-creator-talks-about-stupid-raccoons-quadcopters-what-remains-of-edith-finch-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping https://brreporter.com/word/cultist+s+lair+game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.acolyer.org/2018/09/03/fear-the-reaper-characterization-and-fast-detection-of-card-skimmers/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesradar.com/guardians-of-the-galaxy-3-might-not-go-ahead-and-thats-a-good-thing-for-james-gunn-and-the-mcu/ ...'
b' |MSG| Found article'
Name Lair of the Demon Ape
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://indigo.ie/~gerryq/lair/lair.htm
Status beta
Released 2007/02/13
Updated 2007/2/20
Developer gerryq
Theme Fantasy
Influences Rogue, Crawl
Name: 273, dtype: object
http://duckduckgo.com/html/?q=%22Lair%20of%20the%20Demon%20Ape%22%20AND%20gerryq%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://indigo.ie/~gerryq/lair/lair.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping https://groups.google.com/d/topic/rec.games.roguelike.development/TFYnGXDCU78 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/qBoBcOa3/yet-another-dungeon-generation-algorithm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/7zLssV0P/hex-dungeon-generation-anyone ...'
b' |MSG| Found article'
Name LambdaRogue: The Book of Stars
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://code.google.com/p/lambdarogue/
Status stable
Released 2006/07/00
Updated 2012/06/10
Developer Mario Donick
Theme Science Fiction
Influences Nethack, Angband, ADOM, Sacred, Diablo 2
Name: 274, dtype: object
http://duckduckgo.com/html/?q=%22LambdaRogue%3A%20The%20Book%20of%20Stars%22%20AND%20Mario%20Donick%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://yepdownload.com/lambdarogue-the-book-of-stars ...'
b'!!FAIL!! Failed to load https://yepdownload.com/lambdarogue-the-book-of-stars'
HTTPSConnectionPool(host='yepdownload.com', port=443): Max retries exceeded with url: /lambdarogue-the-book-of-stars (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://lgdb.org/game/lambdarogue_book_stars ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamebanshee.com/games/lambdarogue-the-book-of-stars.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.uptodown.com/windows/search/basketball-stars ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=45.3405 ...'
b' |MSG| Scraping https://en.uptodown.com/windows/search/fate-go ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rampantgames.com/blog/?p=2048 ...'
b' |MSG| Found article'
Name Land of Darkness
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://powerwyrm.monsite-orange.fr/
Status beta
Released 1000/00/00
Updated 2014/12/24
Developer PowerWyrm
Theme Fantasy
Influences Angband, ADOM
Name: 275, dtype: object
http://duckduckgo.com/html/?q=%22Land%20of%20Darkness%22%20AND%20PowerWyrm%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://exvius.gamepedia.com/Land_of_Darkness/Exploration ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.arcadespot.com/game/land-of-darkness/ ...'
b' |MSG| Scraping http://www.roundgames.net/action-games/land-of-darkness/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=a62XNXni6xM ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/SonofHerculesTheLandofDarkness ...'
b' |MSG| Found article'
b' |MSG| Scraping http://kbhgames.com/game/land-of-darkness ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hackedarcadegames.com/game/22512/Land-Of-Darkness.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkgk.com/com.coolgame.dr.th ...'
b' |MSG| Found article'
b' |MSG| Scraping http://k2t2.com/land-of-darkness/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.arcadeprehacks.com/game/32352/land-of-darkness.html ...'
b' |MSG| Scraping http://lands-of-darkness.wikidot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.scotsman.com/lifestyle/culture/books/book-review-ibn-fadlan-and-the-land-of-darkness-arab-travellers-in-the-far-north-1-2031408 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://id.y8.com/games/land_of_darkness ...'
b' |MSG| Found article'
b' |MSG| Scraping https://biblehub.com/sermons/pub/the_land_of_darkness_and_the_great_light.htm ...'
b' |MSG| Scraping https://apkpure.com/land-of-darkness/com.zukina.tibor.landofdarkness ...'
b' |MSG| Found article'
b' |MSG| Scraping http://humongous.wikia.com/wiki/The_Land_of_Darkness ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.newgrounds.com/ngio/medal/53036 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kongregate.com/games/clockworkmonster/land-of-darkness ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ffbe.kongbakpao.com/land-of-darkness-exploration/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gameshot.org/?id=9544 ...'
b' |MSG| Scraping https://tempostorm.com/heroes-of-the-storm/guides/the-only-light-in-a-land-of-darkness-support-uther ...'
b' |MSG| Found article'
b' |MSG| Scraping https://darknessdesign.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://liz-mariposa.tumblr.com/ ...'
b' |MSG| Found article'
Name Land of Strangers
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://agingminotaur.blogspot.com/
Status alpha
Released 2013/04/02
Updated 2018/08/20
Developer Aging Minotaur
Theme Wild West, Weird West, Alternate Reality
Influences Abura Tan, GearHead, Caves of Qud, ADOM, Hopli...
Name: 276, dtype: object
http://duckduckgo.com/html/?q=%22Land%20of%20Strangers%22%20AND%20Aging%20Minotaur%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://agingminotaur.itch.io/land-of-strangers ...'
b' |MSG| Found article'
b' |MSG| Scraping https://agingminotaur.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=65761.0 ...'
b' |MSG| Scraping https://blackmod.net/threads/game-bloons-adventure-time-td-v1-0-6-mod.1321/ ...'
b' |MSG| Scraping https://venturebeat.com/2018/08/31/how-game-developers-can-figure-out-what-theyre-passionate-about/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=3221.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=3221.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=3221.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.friv-games-today.com/game/10767/slenderman-history-wwii-faceless-horror.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=AVWlwLMr87E ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sott.net/article/394826-Revenge-of-Eurasian-land-powers-the-Great-Game-updated ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.planetminecraft.com/project/the-land-of-edraria-massive-rpg-adventure-map-trailer-11-11-18/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://blogs.timesofisrael.com/the-land-of-strangers/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping http://blogs.lse.ac.uk/lsereviewofbooks/2012/09/18/book-review-land-of-strangers-ash-amin/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eventhubs.com/news/2018/aug/31/netherrealm-studios-working-new-game-and-theres-good-chance-its-mortal-kombat-11-which-characters-do-you-want-see-return/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://beforeitsnews.com/v3/paranormal/2018/2535862.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/13285229-land-of-strangers ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blogs.ancientfaith.com/nootherfoundation/strangers-in-a-strange-land/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.co.uk/Land-Strangers-Ash-Amin-ebook/dp/B00CNNPIAO ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.com/This-Land-Strangers-Relationship-Imperils/dp/1608322998 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kobo.com/us/en/ebook/this-land-of-strangers-the-relationship-crisis-that-imperils-home-work-politics-and-faith ...'
b' |MSG| Found article'
b' |MSG| Scraping https://fantlab.ru/work1064918?sort=rating ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jtglover.wordpress.com/2012/03/04/chiaramonte-strangers/ ...'
b' |MSG| Scraping https://sialos.blogspot.com/ ...'
b' |MSG| Scraping https://worldbuilderblog.me/2016/11/17/5-campaign-worlds-for-your-next-dd-game/ ...'
b' |MSG| Found article'
Name Land of cigo
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dexrow.blogspot.com/2007/09/land-of-cig...
Status alpha
Released 2007/09/20
Updated 2007/09/20
Developer dexrow
Theme NaN
Influences NaN
Name: 277, dtype: object
http://duckduckgo.com/html/?q=%22Land%20of%20cigo%22%20AND%20dexrow%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Lands of Elderlore
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://landsof.elderlore.com/
Status alpha
Released 2006/08/30
Updated 2007/07/30
Developer Altefcat
Theme Medieval Fantasy
Influences Tolkien, Hobb, Elite, Dwarf Fortress
Name: 278, dtype: object
http://duckduckgo.com/html/?q=%22Lands%20of%20Elderlore%22%20AND%20Altefcat%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Larn
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://larn.org/
Status major
Released 1986/00/00
Updated 2018/03/29
Developer Noah Morgan, copx, Gibbon
Theme Fantasy
Influences Rogue
Name: 279, dtype: object
http://duckduckgo.com/html/?q=%22Larn%22%20AND%20Noah%20Morgan%20OR%20%20copx%20OR%20%20Gibbon%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name LarnHD
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.freewebs.com/drussell/
Status stable
Released 1000/00/00
Updated 2013/04/00
Developer Donnie Russell
Theme Fantasy
Influences Larn
Name: 280, dtype: object
http://duckduckgo.com/html/?q=%22LarnHD%22%20AND%20Donnie%20Russell%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Last-of-candle
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.interq.or.jp/libra/oohara/last-of-c...
Status stable
Released 2010/03/13
Updated 2010/03/28
Developer Oohara Yuuma
Theme fantasy
Influences NaN
Name: 281, dtype: object
http://duckduckgo.com/html/?q=%22Last-of-candle%22%20AND%20Oohara%20Yuuma%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Legacy of a Warlord
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.legacyofawarlord.com/
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer willraman
Theme Modable, Massive battle
Influences Mount&blade, Diablo
Name: 282, dtype: object
http://duckduckgo.com/html/?q=%22Legacy%20of%20a%20Warlord%22%20AND%20willraman%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Legends of Yore
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.legendsofyore.com/
Status alpha
Released 2011/04/21
Updated 2011/06/02
Developer Kevin Glass
Theme Fantasy
Influences Angband, NetHack
Name: 283, dtype: object
http://duckduckgo.com/html/?q=%22Legends%20of%20Yore%22%20AND%20Kevin%20Glass%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Legerdemain
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguelikefiction.com/
Status stable
Released 2005/00/00
Updated 2011/9/14
Developer Nathan D. Jerpe
Theme Fantasy
Influences interactive fiction
Name: 284, dtype: object
http://duckduckgo.com/html/?q=%22Legerdemain%22%20AND%20Nathan%20D.%20Jerpe%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Letrain
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sourceforge.net/projects/letrain/
Status beta
Released 2006/3/14
Updated 2008/12/26
Developer avazquez
Theme Modern, trains
Influences NaN
Name: 285, dtype: object
http://duckduckgo.com/html/?q=%22Letrain%22%20AND%20avazquez%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Liberal Crime Squad
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sourceforge.net/projects/lcsgame/
Status beta
Released 2002/00/00
Updated 2012/05/06
Developer Bay 12 Games (before), open source community (...
Theme Organized crime (leftist terrorist organizatio...
Influences 1983 PC video game Oubliette
Name: 286, dtype: object
http://duckduckgo.com/html/?q=%22Liberal%20Crime%20Squad%22%20AND%20Bay%2012%20Games%20%28before%29%20OR%20%20open%20source%20community%20%28now%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Light Along That Coffee!
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status alpha
Released 2009/00/00
Updated 2009/12/28
Developer User:Nigelkerr
Theme historical fiction spin-off
Influences NaN
Name: 287, dtype: object
http://duckduckgo.com/html/?q=%22Light%20Along%20That%20Coffee%21%22%20AND%20User%3ANigelkerr%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Lingwall
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.lingwall.org/
Status beta
Released 2014/11/20
Updated 2014/11/20
Developer Lingwall Studios
Theme Sci-Fi
Influences ADOM, Angband, Monkey Island
Name: 288, dtype: object
http://duckduckgo.com/html/?q=%22Lingwall%22%20AND%20Lingwall%20Studios%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://lingwall.se/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://lingwall.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://lingwall.org/wp/ ...'
b' |MSG| Scraping https://stackoverflow.com/users/2640268/jake-lingwall ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/lingwall88 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/jakelingwallbooks/?ref=py_c ...'
b' |MSG| Scraping https://opinionatedgamers.com/2017/07/06/startups-review-by-jeff-lingwall/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.boardgamegeek.com/blogger/580/jeff-lingwall ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/channel/UCiqMx3k57K2hFjx98LP_4Pg ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.americanlastnames.us/L/LINGWALL.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.namespedia.com/details/Lingwall ...'
b' |MSG| Scraping https://names.mongabay.com/data/lh/LINGWALL.html ...'
b' |MSG| Scraping https://www.linkedin.com/in/bret-lingwall-68943068 ...'
b' |MSG| Scraping https://www.reddit.com/user/lingwall88/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://booksc.org/g/Lingwall ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.healthgrades.com/providers/dureece-lingwall-3bmhj ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quora.com/profile/Jacob-Lingwall?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://livinlingwall.blogspot.com/ ...'
b' |MSG| Scraping https://www.geni.com/surnames/lingwall ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nber.org/people/jeff_lingwall ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.locateancestors.com/lingwall/ ...'
b' |MSG| Scraping https://rutgers.academia.edu/AnneLingwallOdio ...'
b'!!FAIL!! Failed to load https://rutgers.academia.edu/AnneLingwallOdio'
HTTPSConnectionPool(host='rutgers.academia.edu', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping https://www.soccerway.com/players/kim-lingwall/255958/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/author/13592511.Jake_Lingwall/questions ...'
b' |MSG| Found article'
Name Linley's Dungeon Crawl
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.dungeoncrawl.org/
Status major
Released 1995/00/00
Updated 2005/00/00
Developer Linley Henzell, others
Theme Fantasy
Influences NetHack
Name: 289, dtype: object
http://duckduckgo.com/html/?q=%22Linley%27s%20Dungeon%20Crawl%22%20AND%20Linley%20Henzell%20OR%20%20others%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://drive.google.com/ ...'
b' |MSG| Scraping https://www.google.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://login.i-ready.com/ ...'
b' |MSG| Scraping https://translate.google.com/ ...'
b' |MSG| Scraping http://pbskids.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://m.facebook.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://create.kahoot.it/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://my.pltw.org/ ...'
b' |MSG| Scraping https://www.cnn.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://skydrive.live.com/ ...'
b' |MSG| Scraping https://tweetdeck.twitter.com/ ...'
b' |MSG| Scraping https://mail.google.com/mail/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ipsy.com/ ...'
b' |MSG| Scraping https://www.thefreedictionary.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://docs.google.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.cwtv.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.deviantart.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.michiganlottery.com/ ...'
b' |MSG| Scraping http://www.mtv.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.hbogo.com/ ...'
Name LinuxRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.coredumpcentral.org/
Status major
Released 1000/00/00
Updated 2011/00/00
Developer Ashwin Nanjappa, Greg Kennedy, Jesse Printz, o...
Theme Fantasy
Influences Rogue Clone
Name: 290, dtype: object
http://duckduckgo.com/html/?q=%22LinuxRogue%22%20AND%20Ashwin%20Nanjappa%20OR%20%20Greg%20Kennedy%20OR%20%20Jesse%20Printz%20OR%20%20others%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://britzl.github.io/roguearchive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/pics/comments/94oo01/kevin_smith_recreated_his_famous_jorts_picture_to/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikedevelopment.org/archive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/atsb/LinuxRogue ...'
b' |MSG| Scraping http://ftparmy.com/263607-linuxrogue.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://neonstreet.net/ ...'
b'!!FAIL!! Failed to load https://neonstreet.net/'
HTTPSConnectionPool(host='neonstreet.net', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.softwaresea.com/Linux/download-LinuxRogue-10009361.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libraries.io/github/jonypawks ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.softpile.com/linuxrogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://justdropped.com/drops/062612com.html ...'
Name Lord of the Dark Castle
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://craze.se/lotdc/lotdc.php
Status stable
Released 2014/12/18
Updated 2014/12/18
Developer Christian Andersson, Craze Creative Studios
Theme Fantasy
Influences Angband, Daggerfall, Ultima 8, Diablo
Name: 291, dtype: object
http://duckduckgo.com/html/?q=%22Lord%20of%20the%20Dark%20Castle%22%20AND%20Christian%20Andersson%20OR%20%20Craze%20Creative%20Studios%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://small-games.info/?go=game&c=10&i=17486 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nnm-club.me/forum/viewtopic.php?t=856770 ...'
b' |MSG| Scraping http://RuTracker.org/forum/viewtopic.php?t=4996904 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mmo13.ru/games/lord-of-the-dark-castle ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/adventure/lord-of-the-dark-castle ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/349460/Lord_of_the_Dark_Castle/ ...'
b' |MSG| Scraping https://www.chaptercheats.com/qna/pc/316911/Lord-Of-The-Dark-Castle-Answers.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamepciso.com/lord-of-the-dark-castle-pc-full-iso-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.guspi.com/lord-of-the-dark-castle/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/lord-of-the-dark-castle ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.50gameslike.com/games-like/lord-of-the-dark-castle/ps4 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.java-gaming.org/index.php?topic=36558.0 ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=TImY0HgMPaY ...'
b' |MSG| Scraping http://trackerok.org/games/261954-Lord_of_the_Dark_Castle_Repack_ENG_2015.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.steamkiwi.com/app/349460 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamecupid.com/games/lord-dark-castle ...'
b' |MSG| Found article'
b' |MSG| Scraping http://en.riotpixels.com/games/lord-of-the-dark-castle/screenshots/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/349460 ...'
b' |MSG| Scraping https://rawg.io/games/lord-of-the-dark-castle ...'
b' |MSG| Found article'
b' |MSG| Scraping http://skidrowgamesreloaded.net/lord-of-the-dark-castle/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.allpcgame.net/2015/04/lord-of-dark-castle-pc.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://pc-games-torrent.ru/11468-lord-of-the-dark-castle-2014-en-1011-repack-alias.html ...'
b' |MSG| Scraping http://fantor.club/games/207653-Lord_of_the_Dark_Castle___2015_v1065.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.releases.com/p/lord-of-the-dark-castle ...'
b' |MSG| Found article'
Name Lost Labyrinth
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.lostlabyrinth.com/
Status stable
Released 2001/00/00
Updated 2016/10/18
Developer Frank Malota, Markus Doebele
Theme Fantasy
Influences Hack, Return of Heracles
Name: 292, dtype: object
http://duckduckgo.com/html/?q=%22Lost%20Labyrinth%22%20AND%20Frank%20Malota%20OR%20%20Markus%20Doebele%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.lostlabyrinth.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lost-labyrinth.ar.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.veteranstoday.com/2018/09/01/william-cooper-lost-history-or-something-else/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.filefacts.com/lost-labyrinth-info ...'
b' |MSG| Found article'
b' |MSG| Scraping https://yepdownload.com/lost-labyrinth ...'
b'!!FAIL!! Failed to load https://yepdownload.com/lost-labyrinth'
HTTPSConnectionPool(host='yepdownload.com', port=443): Max retries exceeded with url: /lost-labyrinth (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://forum.albiononline.com/index.php/Thread/96694-Create-item-progression-and-personality/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://RuTracker.org/forum/viewtopic.php?t=3453556 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://aleteia.org/2018/08/31/lost-in-the-darkness-of-this-world-pray-this-prayer-of-bl-john-henry-newman/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forums.bigfishgames.com/forums/show/4292.page ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/politics/2018/sep/02/frank-field-birkenhead-constituency-divisive-figure ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mentalfloss.com/article/556325/game-of-thrones-fan-theory-cersei-lannister-baby ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ancient-wisdom.com/labyrinths.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dailymail.co.uk/debate/article-6122853/Frank-Field-reels-vile-bile-Jeremy-Corbyns-troll-army.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://small-games.info/?go=game&c=10&i=8705 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thesun.co.uk/news/7153190/michael-gove-jeremy-corbyn-frank-field/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamspy.com/dev/Markus+D%C3%B6bele ...'
b' |MSG| Found article'
b' |MSG| Scraping http://guardian.ng/politics/most-apc-governors-have-lost-touch-with-voters-and-are-afraid-of-direct-primaries-says-sani/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pcgamingwiki.com/wiki/Lost_Labyrinth_Extended_Version ...'
b' |MSG| Found article'
b' |MSG| Scraping https://uk.gamersgate.com/developer/1871/markus-dbele ...'
b' |MSG| Found article'
b' |MSG| Scraping http://lgames.info/match-3/the-lost-labyrinth.html ...'
b' |MSG| Scraping http://www.reloaded.org/rate/54/5/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.doublegames.com/the-lost-labyrinth.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/lost-labyrinth ...'
b' |MSG| Scraping https://game-owl.com/the-lost-labyrinth/ ...'
Name Lotus, a town for rogues
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.caffeineoverdose.me/
Status stable
Released 2016/00/00
Updated 2016/00/00
Developer Andrew Wright (@roocey)
Theme Fantasy
Influences Brogue, Angband
Name: 293, dtype: object
http://duckduckgo.com/html/?q=%22Lotus%2C%20a%20town%20for%20rogues%22%20AND%20Andrew%20Wright%20%28%40roocey%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://roguetemple.com/7drl/2016/ ...'
Name MAngband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.mangband.org/
Status stable
Released 1997/04/20
Updated 2016/5/27
Developer MAngband Project Team
Theme Fantasy
Influences Angband
Name: 294, dtype: object
http://duckduckgo.com/html/?q=%22MAngband%22%20AND%20MAngband%20Project%20Team%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://mangband.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mangband.org/developer ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/mangband/mangband ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mangband.org/Main/WhatIsMAngband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=Yi8jrBIUjdg ...'
b' |MSG| Scraping https://www.freshports.org/games/mangband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sites.google.com/site/mangband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.portablefreeware.com/forums/viewtopic.php?t=2846 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tomenet.eu/phpBB3/viewtopic.php?t=1112 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.webwiki.com/mangband.org ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelikedeveloper.blogspot.com/2008/10/mangband.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://angband.oook.cz/variants.php?variant=m ...'
b' |MSG| Scraping http://dmoztools.net/Games/Video_Games/Roleplaying/Rogue-like/Angband/MAngband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.easycounter.com/report/mangband.org ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ttygames.wordpress.com/2013/05/28/mangband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sites.reformal.ru/mangband.org ...'
b'!!FAIL!! Failed to load https://sites.reformal.ru/mangband.org'
HTTPSConnectionPool(host='sites.reformal.ru', port=443): Max retries exceeded with url: /mangband.org (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0x1152f1588>, 'Connection to sites.reformal.ru timed out. (connect timeout=10.1)'))
b' |MSG| Scraping http://www.oldgamesfinder.com/?m=2&q=Mangband ...'
b' |MSG| Scraping http://mirror.yandex.ru/gentoo-portage/games-roguelike/mangband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.downloadopia.com/mangband.org ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thangorodrim.net/mangband.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mangband.org.domainsdata.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.omnilexica.com/?q=mangband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pkgs.org/download/mangband ...'
b' |MSG| Found article'
Name MIDP RL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://midprl.atspace.com/
Status alpha
Released 2008/09/00
Updated 2008/10/24
Developer Devilbuddy
Theme Fantasy
Influences NaN
Name: 295, dtype: object
http://duckduckgo.com/html/?q=%22MIDP%20RL%22%20AND%20Devilbuddy%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping http://midprl.atspace.com/ ...'
b'!!FAIL!! Failed to load http://midprl.atspace.com/'
HTTPConnectionPool(host='midprl.atspace.com', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x114ff0b38>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known',))
Name MMRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://totlandweb.info/games/mmrl/
Status alpha
Released 2015/008/18
Updated 1000/00/00
Developer Williham Totland
Theme Fantasy
Influences Dwarf Fortress, Unreal World, Minecraft
Name: 296, dtype: object
http://duckduckgo.com/html/?q=%22MMRL%22%20AND%20Williham%20Totland%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://totlandweb.info/games/mmrl/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mmrl.ru/ ...'
b' |MSG| Scraping https://m.facebook.com/MasonicMedicalResearchLaboratory/posts/10154624625555876 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mmrl.ucsd.edu/Courses/SE104/ ...'
b' |MSG| Scraping https://nels1967.wordpress.com/2014/06/11/mmrl/ ...'
b' |MSG| Scraping http://acronymsandslang.com/definition/5994697/MMRL-meaning.html ...'
b' |MSG| Scraping http://mmrl.ca/drug_development.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mmrl.clan.su/ ...'
b' |MSG| Scraping https://www.healthgrades.com/group-directory/ny-new-york/port-jefferson/john-t-mather-mmrl-hsptl-rsdncy-oov8nq4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=fZZV28j7wPU ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmrl.edu/board-of-directors/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.webwiki.com/mmrl.edu ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefreedictionary.com/words-that-start-with-Mmrl ...'
b' |MSG| Scraping https://scholar.google.ru/citations?user=Wtry1CcAAAAJ&hl=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mmrl.us/ ...'
b'!!FAIL!! Failed to load https://mmrl.us/'
HTTPSConnectionPool(host='mmrl.us', port=443): Max retries exceeded with url: / (Caused by SSLError(CertificateError("hostname 'mmrl.us' doesn't match either of '*.bluehost.com', 'bluehost.com'",),))
b' |MSG| Scraping https://memorialmx.bandcamp.com/album/mmrl-001-memorial ...'
b' |MSG| Found article'
b' |MSG| Scraping http://offlinehost.forumotion.com/c12-the-mmrl ...'
b' |MSG| Scraping http://mmrl.com/ ...'
b' |MSG| Scraping http://www.anthos.com/en/products/a6 ...'
b' |MSG| Scraping https://archive.org/stream/TheBiblicalQumranScrolls/61301866-The-Biblical-Qumran-Scrolls-Eugene-Charles-Ulrich_djvu.txt ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/mmrl94 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thenationalherald.com/180506/dr-maria-kontaridis-named-new-director-research-mmrl/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.scribd.com/doc/257567726/psw-txt ...'
Name Mage Guild
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://web.archive.org/web/20160312005831/http...
Status stable
Released 2008/04/03
Updated 2010/07/20
Developer Nahjor
Theme fantasy
Influences NetHack
Name: 297, dtype: object
http://duckduckgo.com/html/?q=%22Mage%20Guild%22%20AND%20Nahjor%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://mightandmagic.wikia.com/wiki/Mage_Guild_(H3) ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefaqs.gamespot.com/boards/927207-heroes-of-might-and-magic-v/58513402 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.elderscrollsonline.com/en/discussion/comment/4544642 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.supercheats.com/xbox360/questions/theelderscrollsivoblivion/90097/i-m-on-a-quest-of-the-mage-gui.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forums.thedarkmod.com/topic/4136-mage-guild-and-inventors-guild/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/artifact/artifact-skywrath-mage ...'
b' |MSG| Found article'
b' |MSG| Scraping http://heroes.thelazy.net/wiki/Mage_Guild ...'
b' |MSG| Found article'
b' |MSG| Scraping http://heroes3wog.net/comic-strip-crag-and-mage-guild/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ironworksforum.com/forum/showthread.php?t=63857 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.civfanatics.com/threads/m-notw-xii-the-mage-guild-game-thread.413356/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mageguildlfm.smackjeeves.com/ ...'
b' |MSG| Scraping https://forums.nexusmods.com/index.php?/topic/8147-mage-guild-quest/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=9JVFtT4h6tg ...'
b' |MSG| Scraping http://www.enworld.org/forum/showthread.php?275065-Mage-Guild-initiation-tests ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.itechpost.com/articles/85799/20170218/skyrim-remastered-build-best-mage-starter-guide.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.neoseeker.com/forums/26839/t1020455-im-mage-join-fighters-guild-mage-guild/ ...'
b' |MSG| Scraping http://www.ttlg.com/Forums/showthread.php?t=51580 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamersoflag.wikidot.com/mage-guild ...'
b' |MSG| Found article'
b' |MSG| Scraping https://irowiki.org/wiki/Mage ...'
b' |MSG| Found article'
b' |MSG| Scraping https://guides.gamepressure.com/heroes3hd/guide.asp?ID=29507 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://uk.answers.yahoo.com/question/index?qid=20111015130730AAzYIt2 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kobolds-keep.blogspot.com/2011/05/guilds-in-rpg-settings-part-1-mage.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://zygorguides.com/forum/showthread.php?16395-(Feedback)-Fighter-and-Mage-Guild-Quests ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=357.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=357.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=357.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
Name Magician's Apprentice
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://games.kosek.com/game/magician.html
Status beta
Released 2015/3/24
Updated 2015/3/24
Developer shelim (core)
Theme Fantasy
Influences Diablo
Name: 298, dtype: object
http://duckduckgo.com/html/?q=%22Magician%27s%20Apprentice%22%20AND%20shelim%20%28core%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://pl.linkedin.com/in/piotrkosek ...'
Name Magog
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/rsaarelm/magog
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Risto Saarelma
Theme fantasy
Influences NaN
Name: 299, dtype: object
http://duckduckgo.com/html/?q=%22Magog%22%20AND%20Risto%20Saarelma%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=hrwaoKzceA4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://noorslist.wordpress.com/2008/02/06/story-of-yajooj-and-majooj-the-gog-and-magog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.iqrasense.com/death-and-after-life/the-story-of-yajuj-and-majuj-gog-and-magog.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://devhub.io/developer/rsaarelm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://everipedia.org/wiki/Gog_and_Magog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/rsaarelm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quora.com/topic/Gog-and-Magog?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://biblehub.com/topical/g/gog_and_magog.htm ...'
b' |MSG| Scraping https://gogandmagog.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.britannica.com/topic/Gog ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.discoverrevelation.com/26.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.compellingtruth.org/Gog-Magog.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.jewishencyclopedia.com/articles/6735-gog-and-magog ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lordmayorsshow.london/history/gog-and-magog.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.imranhosein.org/articles/signs-of-the-last-day/69-gog-and-magog-in-the-quran.html?start=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rationalwiki.nom.pw/wiki/Gog_and_Magog ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bible.knowing-jesus.com/topics/Gog-And-Magog ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gogmagog.de/ ...'
b' |MSG| Scraping http://www.gogemagog.it/ ...'
b' |MSG| Scraping http://www.truthnet.org/islam/Islam-Bible/12Gog-Magog-Russia/Gog-Magog-Russia.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wikiwand.com/en/Gog_and_Magog ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alchetron.com/Gog-Magog-Games ...'
b' |MSG| Found article'
b' |MSG| Scraping http://christinprophecy.org/articles/timing-gog-magog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://blogs.christianpost.com/guest-views/debunking-the-russia-war-of-gog-and-magog-myth-8754/ ...'
b' |MSG| Found article'
Name Malastro
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status beta
Released 2012/11/02
Updated 2012/11/14
Developer Roger Norris
Theme zombies, post-apocalyptic
Influences DoomRL, Left 4 Dead
Name: 300, dtype: object
http://duckduckgo.com/html/?q=%22Malastro%22%20AND%20Roger%20Norris%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.gametracker.com/player/Malastro/?game=csgo ...'
b' |MSG| Found article'
b' |MSG| Scraping http://zvukoffka.net/music/laurent%20deschamps%20-%20le%20g%C3%A9nie%20malastro ...'
b' |MSG| Scraping https://avxhm.se/ebooks/I_MALASTRO_STORIA_DI_PESCATORI_D_ALTRI_TEMPI.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://openpdf.com/ebook/malastro-pdf.html ...'
b' |MSG| Scraping http://angband.oook.cz/forum/showthread.php?t=5753 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=2773.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=2773.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=2773.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://picpublic.com/user/yogimalastro/ ...'
b'!!FAIL!! Failed to load https://picpublic.com/user/yogimalastro/'
HTTPSConnectionPool(host='picpublic.com', port=443): Max retries exceeded with url: /user/yogimalastro/ (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://bookrest.in/i-malastro-storia-di-pescatori-d-altri-tempi-la-storia-dei-m/1052601.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.lyricsmania.com/le_genie_malastro_lyrics_laurent_deschamps.html ...'
b' |MSG| Scraping http://iphoneretro.com/la-casa-nellorto-una-storia-daltri-tempi.pdf ...'
b'!!FAIL!! Failed to load http://iphoneretro.com/la-casa-nellorto-una-storia-daltri-tempi.pdf'
HTTPConnectionPool(host='iphoneretro.com', port=80): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://cdtrrracks.com/tid7546443.html ...'
Name Manicule of Fury
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://www.dropbox.com/s/ovfz50eo23syvjk/Mani...
Status unknown
Released 1000/00/00
Updated 1000/00/00
Developer Badscribbler
Theme Martial Arts
Influences SRPG, non standard HP systems
Name: 301, dtype: object
http://duckduckgo.com/html/?q=%22Manicule%20of%20Fury%22%20AND%20Badscribbler%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.roguetemple.com/7drl/2017/ ...'
Name Martin's Dungeon Bash
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.chiark.greenend.org.uk/~mpread/dung...
Status stable
Released 2005/02/02
Updated 2009/1/6
Developer Martin Read
Theme Fantasy
Influences Rogue
Name: 302, dtype: object
http://duckduckgo.com/html/?q=%22Martin%27s%20Dungeon%20Bash%22%20AND%20Martin%20Read%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://blog.roguetemple.com/reviews/martins-dungeon-bash/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gaming.wikia.com/wiki/Martin%27s_Dungeon_Bash ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikedev/comments/8jw2ak/is_there_a_simple_roguelike_written_in_very_clean/ ...'
b' |MSG| Scraping https://blog.roguetemple.com/2007/06/05/roguelikelib-v04/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.tomshardware.com/forum/74938-13-vtes-online-beta ...'
b' |MSG| Scraping http://www.tomshardware.com/forum/48959-13-colossus-chess ...'
b' |MSG| Scraping https://groups.google.com/d/topic/rec.games.roguelike.development/tEZaCgdwnlo ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://groups.google.com/d/topic/rec.games.roguelike.development/WrHPPcr1RrA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefullwiki.org/Roguelikes ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikedev/comments/3ibpoc/is_rgrd_not_used_anymore_also_good_roguelike/ ...'
b' |MSG| Scraping http://www.thefullwiki.org/Roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.spacebattles.com/threads/what-composite-roguelike-protagonist-can-beat.361711/ ...'
b' |MSG| Found article'
Name Menskband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/There%20i...
Status stable
Released 1000/00/00
Updated 1000/00/00
Developer NaN
Theme NaN
Influences Angband
Name: 303, dtype: object
http://duckduckgo.com/html/?q=%22Menskband%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://icbs.palityka.org/wp-content/uploads/2017/09/2017-full-final.pdf ...'
b' |MSG| Scraping https://lurkmore.co/%D1%80%D0%BE%D0%B3%D0%B0%D0%BB%D0%B8%D0%BA%D0%B8 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://menskband.narod.ru/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ru-ru.facebook.com/games.scholars/ ...'
b' |MSG| Scraping http://gmakers.xyz/index.php?topic=5851.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://siterankz.com/siteinfo/menskband.narod.ru ...'
b' |MSG| Found article'
b' |MSG| Scraping https://familyfriendly.site/review/menskband.narod.ru/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ponyach.ru/b/res/1729456.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rankchart.net/site/menskband.narod.ru/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/sUvPtmBB ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.iswebsitesafe.net/d/menskband.narod.ru ...'
b' |MSG| Found article'
b' |MSG| Scraping https://followsite.net/www.menskband.narod.ru ...'
b' |MSG| Scraping https://www.easycounter.com/report/menskband.narod.ru ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.iswebsitedownnow.com/d/menskband.narod.ru ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.robtex.com/dns-lookup/menskband.narod.ru ...'
b' |MSG| Found article'
b' |MSG| Scraping https://filelisting.com/total-dos-collection-release-11-de8cea12c6807d61f258fea7ca2f4f35808ef117.html ...'
Name MetroidRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://slashie.net/
Status beta
Released 2006/10/25
Updated 2010/11/15
Developer Slash
Theme Science Fiction, Futuristic
Influences Metroid series
Name: 304, dtype: object
http://duckduckgo.com/html/?q=%22MetroidRL%22%20AND%20Slash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://blog.slashie.net/ ...'
b' |MSG| Scraping https://forum.chaosforge.org/index.php?topic=1863.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=1396.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=1396.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=1396.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.rpgcodex.net/forums/threads/71097/unread ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguewombat.wordpress.com/ ...'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=10382.0 ...'
b' |MSG| Scraping http://thelist.roguelikedevelopment.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rocketdownload.com/program/metroidrl-617633.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.brothergames.com/pc/metroidrl-523870-download.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libraries.io/github/slashman/metroidrl ...'
b'!!FAIL!! Failed to load https://libraries.io/github/slashman/metroidrl'
HTTPSConnectionPool(host='libraries.io', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://roguelikefr.forumactif.org/t39-le-roguelike-bundle ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelike.weebly.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alexvampire.wordpress.com/2016/01/24/roguelike-mega-collection-700-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.macshareware.com/review/metroidrl ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.howtospotapsychopath.com/2007/02/11/next-the-zork-fps/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.filebuzz.com/fileinfo/291372/MetroidRL_For_Mac.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.downloadcollection.com/metroidrl_for_mac.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ftparmy.com/188271-metroidrl.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.fo/IXN3k ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/iyzPQdRK ...'
b' |MSG| Found article'
b' |MSG| Scraping http://push2check.net/slashie.net ...'
b' |MSG| Found article'
Name Microcosm
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status alpha
Released 2011/11/18
Updated 2011/12/14
Developer Colin Gan
Theme sci-fi
Influences Dungeon Crawl Stone Soup, Dwarf Fortress, Angb...
Name: 305, dtype: object
http://duckduckgo.com/html/?q=%22Microcosm%22%20AND%20Colin%20Gan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://microco.sm/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://microcosm.earth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.encyclopedia.com/history/dictionaries-thesauruses-pictures-and-press-releases/microcosm-and-macrocosm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://marimortem.blogspot.com/2016/07/fashioning-my-cyber-microcosm-inside.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://app4smart.com/en/2942-microcosm.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.scribd.com/doc/126283172/Lars-Thunberg-Microcosm-and-Mediator ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.myabandonware.com/game/microcosm-591 ...'
b' |MSG| Scraping https://www.microcosm.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://smad.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://microcosm.bandcamp.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://microcosmpublishing.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefullwiki.org/Microcosm_%28video_game%29 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://science.jrank.org/pages/10209/Microcosm-Macrocosm-Plato.html ...'
b' |MSG| Scraping http://www.iranicaonline.org/articles/microcosm-and-macrocosm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.microcosm-engine.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://microcosm-inc.com/ ...'
b' |MSG| Scraping https://wiki2.org/en/Microcosm_(video_game) ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/785996.Microcosm_and_Mediator ...'
b' |MSG| Found article'
b' |MSG| Scraping https://historynewsnetwork.org/article/572 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wikiwand.com/en/Macrocosm_and_microcosm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wn.com/Microcosm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://the-microcosm.livejournal.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.britannica.com/topic/microcosm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sparksremarks.com/2017/01/12/messaging-microcosm-and-macrocosm/ ...'
Name MidBoss
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.midboss.net/
Status stable
Released 2014/04/11
Updated 2017/11/27
Developer Eniko
Theme Fantasy
Influences Diablo 2, Dungeons of Dredmor, Zangband, Disga...
Name: 306, dtype: object
http://duckduckgo.com/html/?q=%22MidBoss%22%20AND%20Eniko%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://store.steampowered.com/app/561740/MidBoss/ ...'
b' |MSG| Scraping https://eniko.itch.io/midboss ...'
b' |MSG| Scraping https://midboss.net/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kitsunegames.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.scholarlygamers.com/review/2017/05/22/midboss-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gameskinny.com/1ok1f/midboss-review-with-friends-like-these-might-as-well-possess-them ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.strategygamer.com/reviews/review-midboss/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://midboss.com/ ...'
b' |MSG| Scraping https://emshort.blog/2016/01/19/read-only-memories-midboss/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://saveorquit.com/2017/05/31/review-midboss/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://midboss.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://cliqist.com/2017/04/01/2064-read-only-memories-developer-midboss-ama-recap/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.qwant.com/game/midboss?l=br ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ablegamers.org/midboss/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=ErT479PRXZ8 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/midboss.html ...'
b' |MSG| Scraping https://medium.com/@midboss ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/midboss ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/view/news/313565/How_MidBoss_encodes_a_players_game_data_in_shareable_death_cards.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/wearemidboss ...'
b' |MSG| Found article'
b' |MSG| Scraping https://shortgamereviews.com/2017/05/25/midboss-indie-game-reviews-2017/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.touhouwiki.net/wiki/Boss ...'
b' |MSG| Scraping http://en.wikibedia.ru/wiki/MidBoss ...'
Name Middlecrest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.orionsoftworks.com/middlecrest.html
Status alpha
Released 2010/10/00
Updated 2011/11/11
Developer Sean Brown
Theme Medieval Fantasy, Gothic Punk
Influences The Elder Scrolls, Dungeons and Dragons, Poiso...
Name: 307, dtype: object
http://duckduckgo.com/html/?q=%22Middlecrest%22%20AND%20Sean%20Brown%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://middlecrest.net/ ...'
b' |MSG| Scraping https://www.redfin.com/OR/Lake-Oswego/629-Middlecrest-Rd-97034/home/25746684 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.middlecrestcrossing.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.5457middlecrest.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamedev.net/forums/topic/587784-middlecrest-roguelike-alpha/ ...'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=1351.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=1351.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=1351.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.realtor.com/realestateandhomes-detail/116-Middlecrest-Rd_Lake-Oswego_OR_97034_M28221-95731 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.linkedin.com/in/seanobi ...'
b' |MSG| Scraping https://www.mmodm.com/5857middlecrest.com-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ww1.middlecrest.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.brothergames.com/pc/middlecrest_roguelike-523367.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.realestate.com/0-middlecrest-dr-toledo-wa-98591--2089077098 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://middlecrest-roguelike.soft112.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.filebuzz.com/fileinfo/169080/Middlecrest_Roguelike.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pronouncehippo.com/middlecrest/ ...'
b' |MSG| Scraping https://www.sothebysrealty.com/eng/sales/detail/180-l-83895-9x5zpc/103-middlecrest-dr-washington-pa-15301-washington-pa-15301 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.daolnwod.com/middlecrest-roguelike.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forums.indiegamer.com/threads/middlecrest-roguelike-alpha.23847/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.winsite.com/Games/Adventure-RPG/Middlecrest-Roguelike/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://5857middlecrest.com.clearwebstats.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.walkscore.com/score/middlecrest-dr-toledo-wa-98591 ...'
b' |MSG| Scraping https://www.maparchitects.com/portfolio/middlecrest-crossing-senior-apartments/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.storeshours.com/deb/oregon/lake-oswego/middlecrestrd ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=uvs0Vm1ryJk ...'
b' |MSG| Found article'
Name Mike's Adventure Game
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.homeoftheunderdogs.net/game.php?id=...
Status stable
Released 1988/00/00
Updated 1988/00/00
Developer Mike Teixeira
Theme fantasy
Influences Rogue, Hack
Name: 308, dtype: object
http://duckduckgo.com/html/?q=%22Mike%27s%20Adventure%20Game%22%20AND%20Mike%20Teixeira%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.dosgames.com/game/mikes-adventure-game-mag/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://crpgaddict.blogspot.com/2011/03/game-52-mikes-aventure-game-mag-1988.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://homeoftheunderdogs.net/game.php?id=4774 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.myabandonware.com/game/mag-2mf ...'
b' |MSG| Scraping http://free-game-downloads.mosw.com/abandonware/pc/role_playing_games/games_g_m/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://radaris.com/p/Mike/Teixeira/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dosgames.com/category/role-playing-rpg/3 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mobygames.com/game/dos/mag ...'
Name Miner
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://chomikuj.pl/revelati00
Status stable
Released 2016/00/00
Updated 2016/00/00
Developer Revelati
Theme fantasy, survival
Influences Gem miner
Name: 309, dtype: object
http://duckduckgo.com/html/?q=%22Miner%22%20AND%20Revelati%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=lXu4iTbbDwM ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=BPiT55-Hdj8 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://arstechnica.com/gaming/2017/03/youre-now-free-to-move-about-vice-city-a-history-of-open-world-gaming/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.winminer.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bitcoinexchangeguide.com/bitcoin-cash-stress-test-results-bch-blockchain/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/413150/discussions/0/405693392914493415/?l=spanish ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.telegraph.co.uk/news/obituaries/celebrity-obituaries/8362737/John-Miner.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://80.lv/articles/books-of-the-week-game-design-uncertainty-and-more/ ...'
b' |MSG| Scraping https://www.wideanglegames.com/blog/2015/09/27/mine-trap-under-the-hood/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/Minecraft/comments/qqenq/minceraft_a_post_mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/ore.miner.game/posts ...'
b' |MSG| Scraping http://goldminer.tv/ ...'
b' |MSG| Scraping http://www.playdreamerro.com/forums/index.php?/topic/34353-miner-world/ ...'
b' |MSG| Scraping http://riskofrain.wikia.com/wiki/Miner ...'
b' |MSG| Found article'
b' |MSG| Scraping https://guiminer.org/it/ ...'
b' |MSG| Scraping https://www.planetminecraft.com/blog/mortem-i/ ...'
b' |MSG| Scraping https://medical-dictionary.thefreedictionary.com/post-mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping https://communities.sas.com/t5/SAS-Data-Mining-and-Machine/Random-Forests-in-Enterprise-Miner/td-p/8881 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wormminer.com/ ...'
b' |MSG| Scraping https://www.crazygames.com/game/mega-miner ...'
b' |MSG| Found article'
b' |MSG| Scraping https://totalminer.gamepedia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.planetminecraft.com/server/mortem-ignis/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mineralt.io/ ...'
b' |MSG| Scraping http://forum.brackeys.com/thread/minermania/ ...'
Name Mines of Elderlore
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://landsof.elderlore.com/
Status beta
Released 2008/02/16
Updated 2010/02/02
Developer Altefcat (Emmanuel Dempure)
Theme Classic roguelike
Influences NaN
Name: 310, dtype: object
http://duckduckgo.com/html/?q=%22Mines%20of%20Elderlore%22%20AND%20Altefcat%20%28Emmanuel%20Dempure%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=147.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=147.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=147.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://forums.roguetemple.com/irldb/comment.php?id=Mines+of+Elderlore ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/irldb/comment.php?id=Mines+of+Elderlore'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /irldb/comment.php?id=Mines+of+Elderlore (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://roguecentral.org/doryen/forum/index.php?topic=434.0 ...'
b' |MSG| Scraping https://launchpad.net/~moe.dev/+members ...'
b' |MSG| Found article'
b' |MSG| Scraping http://repo.manaplus.org/sdtraces/BottinHTML/Bottin_K-O_files/Mines_of_Elderlore-11946.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.pygame.org/tags/roguelike ...'
b' |MSG| Scraping http://www.pakpiratebay.mrua.eu.org/pub4/sourceforge/e/el/elderlore/Mines%20of%20Elderlore/ ...'
b' |MSG| Scraping http://thelist.roguelikedevelopment.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelike.blog.hu/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.filewatcher.com/b/ftp/sourceforge.nchc.org.tw/e/el/elderlore/Mines%20of%20Elderlore-0.html ...'
Name Mines of Morgoth
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.minesofmorgoth.com/
Status stable
Released 2002/01/14
Updated 2009/5/2
Developer Philippe Wartelle
Theme Fantasy
Influences Moria
Name: 311, dtype: object
http://duckduckgo.com/html/?q=%22Mines%20of%20Morgoth%22%20AND%20Philippe%20Wartelle%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://angband.oook.cz/forum/showthread.php?t=2605 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=o0sekdPsUSE ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefullwiki.org/Moria_%28video_game%29 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://filmoteca.altervista.org/games/Scarica/Mines_of_Morgoth.html ...'
b' |MSG| Scraping https://vgtimes.ru/games/mines-of-morgoth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.moongate.pw/mineso_screenshots.html ...'
Name Minute Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://nightflyergames.com/?p=171
Status alpha
Released 2009/11/25
Updated 2009/11/25
Developer Nightflyer Games
Theme NaN
Influences 8PRL,
Name: 312, dtype: object
http://duckduckgo.com/html/?q=%22Minute%20Dungeon%22%20AND%20Nightflyer%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=ZJ4MWTBzSns ...'
b' |MSG| Found article'
b' |MSG| Scraping http://minutedungeon.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.boardgamegeek.com/thread/1924686/review-still-fun-after-ten-plays-my-pros-and-cons ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kickstarter.com/projects/wiggles3d/1668249018?token=0f8822fa ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.geekyhobbies.com/5-minute-dungeon-card-game-review-and-rules/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.spritesanddice.com/2018/03/five-minute-dungeon-review ...'
b' |MSG| Scraping https://gamejolt.com/games/the-last-minute-dungeon/203606 ...'
b' |MSG| Scraping http://coopboardgames.com/cooperative-board-game-reviews/5-minute-dungeon-review ...'
b' |MSG| Found article'
b' |MSG| Scraping http://atgn.com.au/5-minute-dungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.com.au/Minute-Dungeon-Card-Game-Adults/dp/B01N4PN3ZP ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.boardgamecapital.com/5-minute-dungeon-rules.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nerdreactor.com/2016/10/27/go-for-glory-in-5-minute-dungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fathergeek.com/5-minute-dungeon_prepub/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pubmeeple.com/review-5-minute-dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://5minutedungeons.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://wiggles3d.com/5md/ ...'
b' |MSG| Scraping http://games144.com/game/52437n-minute-dungeon-game.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://geekdad.com/2017/11/5-minute-dungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.mureview.net/5-minute-dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.masterthedungeon.com/30-minute-dungeons/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.neoseeker.com/forums/93/t2303536-5-minute-dungeon/ ...'
b' |MSG| Scraping https://gloryhoundd.com/2016/11/07/5-minute-dungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tetsujinnollama.blogspot.com/2017/03/review-5-minute-dungeon.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://intl.target.com/p/5-minute-dungeon-fun-card-game-for-kids-and-adults/-/A-52345077 ...'
b' |MSG| Found article'
Name MnemonicRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://mnemonicrl.blogspot.com/
Status alpha
Released 2009/06/21
Updated 2009/06/21
Developer Da-Breegster
Theme Steampunk, Surreal
Influences NaN
Name: 313, dtype: object
http://duckduckgo.com/html/?q=%22MnemonicRL%22%20AND%20Da-Breegster%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://mnemonicrl.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mnemonicrl.blogspot.com/p/dungeons.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=490.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=490.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=490.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.youtube.com/watch?v=lsQC9reFbdQ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=i_7uOwkCOn8 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lvclip.com/rev/legerdemain+roguelike/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mnemonicrl.blogspot.com/2010/06/abstractions-only-please.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mnemonicrl.blogspot.com/2010/07/another-return-not-yield.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamesetwatch.com/2009/06/multiplayer_roguelike_mnemonic.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mnemonicrl.blogspot.com/2010/07/my-own-personal-army.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://uvideoplay.com/video/Animating-ASCII-Water-Ripples-From-MnemonicRL-VideoDownload_U1M4V3ZhOEpSZGs.html ...'
b' |MSG| Found article'
Name Monster Trainer RL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://slashie.net/pokemonrl
Status beta
Released 2017/03/13
Updated 2017/03/25
Developer Slash
Theme Pokemon
Influences Pokemon
Name: 314, dtype: object
http://duckduckgo.com/html/?q=%22Monster%20Trainer%20RL%22%20AND%20Slash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Dungeons of Moria
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.remarque.org/~grabiner/moria.html
Status major
Released 1983/00/00
Updated 2008/10/13
Developer Robert A. Koeneke, Jimmey Wayne Todd Jr., Jame...
Theme Fantasy
Influences Rogue
Name: 315, dtype: object
http://duckduckgo.com/html/?q=%22The%20Dungeons%20of%20Moria%22%20AND%20Robert%20A.%20Koeneke%20OR%20%20Jimmey%20Wayne%20Todd%20Jr.%20OR%20%20James%20E.%20Wilson%20OR%20%20others%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Moving@
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.thescriptan.blogspot.com/
Status alpha
Released 2013/07/12
Updated 2013/7/12
Developer @TheScriptan
Theme Roguelike, Walk, Loot, Kill
Influences Moria
Name: 316, dtype: object
http://duckduckgo.com/html/?q=%22Moving%40%22%20AND%20%40TheScriptan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.moddb.com/games/moving-rl/mods ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/moving-rl/mods ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/linux_gaming/comments/5uxkcc/i_made_my_first_game_and_i_would_love_to_get_help/ ...'
b' |MSG| Scraping https://www.reddit.com/r/gamemaker/comments/4fzh59/stranded_a_development_diary_and_postmortem_for/ ...'
b' |MSG| Scraping https://www.gamedev.net/forums/topic/646386-spawn-rate-problem/ ...'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=237096482 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/comments/336999829 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamedev.net/profile/198037-sednihp/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=uKjNSAv_4bo ...'
b' |MSG| Scraping https://tvclip.biz/video/_55kXUbUJ4o/starcraft-2-hotkey-and-rapid-fire-guide.html ...'
b' |MSG| Scraping http://www.teamliquid.net/forum/brood-war/423511-srt-round-of-4-preview-the-fall-of-aiur ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=VbyDc_uUV30 ...'
b' |MSG| Scraping https://www.moddb.com/games/districtoverrun ...'
b' |MSG| Scraping https://askubuntu.com/questions/tagged/gnome?page=9&sort=votes ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/the-maestros/news/the-maestros-devlog-06-building-a-multiplayer-rts-in-unreal-engine ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.popularyoutube.com/video/k-wGM_lQRLs/EA-Sports ...'
b' |MSG| Scraping http://www.html5gamedevs.com/topic/7955-should-i-learn-htmlcssphp-and-only-when-jump-into-html5/ ...'
b' |MSG| Scraping https://askubuntu.com/questions/tagged/gnome?page=5&sort=faq ...'
b' |MSG| Found article'
b' |MSG| Scraping https://stackoverflow.com/questions/tagged/libtcod ...'
b' |MSG| Scraping http://www.popularyoutube.com/video/RdqEIhSKr0Q/When-you-think-your-friend-cant-hit-a-high-note ...'
Name MovingETA v0.07
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.thescriptan.blogspot.com/
Status alpha
Released 2013/07/12
Updated 2013/08/08
Developer @TheScriptan
Theme Story Based FantasyHack & Slash
Influences Moria Rogue ADOM NetHack
Name: 317, dtype: object
http://duckduckgo.com/html/?q=%22MovingETA%20v0.07%22%20AND%20%40TheScriptan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name Mt. Drash: The Roguelike
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://slashie.net/
Status beta
Released 2006/00/00
Updated 2007/02/12
Developer Slash
Theme Fantasy
Influences Mt. Drash, DoomRL
Name: 318, dtype: object
http://duckduckgo.com/html/?q=%22Mt.%20Drash%3A%20The%20Roguelike%22%20AND%20Slash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://blog.slashie.net/category/roguelikes/castlevaniarl/ ...'
b' |MSG| Scraping https://crpgaddict.blogspot.com/2014/08/game-160-ultima-escape-from-mount-drash.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.slashie.net/category/roguelikes/metroidrl/ ...'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/forums/index.php?threads/the-codex-of-roguelikes.71097/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.spacebattles.com/threads/what-composite-roguelike-protagonist-can-beat.361711/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://thelist.roguelikedevelopment.org/list.txt ...'
b' |MSG| Found article'
Name Mushroomvania 0.0.1
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.mediafire.com/file/6iz7s6bdvina6m8/...
Status alpha
Released 2012/09/16
Updated 2012/09/16
Developer Royalewithcheese
Theme Retro
Influences Brogue, Shiren the Wanderer, many more.
Name: 319, dtype: object
http://duckduckgo.com/html/?q=%22Mushroomvania%200.0.1%22%20AND%20Royalewithcheese%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
Name Mutant Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.mutantrogue.com/
Status alpha
Released 2013/00/00
Updated 2013/12/25
Developer Sam Clifford
Theme Science Fiction, Game Jam
Influences Dungeon Crawl Stone Soup
Name: 320, dtype: object
http://duckduckgo.com/html/?q=%22Mutant%20Rogue%22%20AND%20Sam%20Clifford%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.quora.com/How-does-the-Marvel-mutant-Rogue-use-her-powers-effectively?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nzherald.co.nz/sport/news/article.cfm?c_id=4&objectid=12118080 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mutantrogue.tumblr.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mutantsguide.blogspot.com/2018/09/mutants-3x5-free-campaign-passes-here.html ...'
b' |MSG| Scraping https://www.indiedb.com/games/mutant-rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eventhubs.com/news/2018/aug/31/netherrealm-studios-working-new-game-and-theres-good-chance-its-mortal-kombat-11-which-characters-do-you-want-see-return/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thesaurus.plus/related/mutant/rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://beforeitsnews.com/v3/opinion-conservative/2018/3398947.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.inverse.com/article/27720-legion-sydney-barrett-powers-comics ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.9news.com.au/national/2018/09/02/21/12/60-minutes-video-game-addiction-leading-to-irreversible-brain-change-in-children ...'
b' |MSG| Scraping http://marvelanimated.wikia.com/wiki/Rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://metro.co.uk/2018/09/01/7-casualty-spoilers-sams-funeral-iains-tribunal-and-more-7896688/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=QPrwZn_ltuk ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archiveofourown.org/tags/Mutant%20Powers/works ...'
b' |MSG| Found article'
b' |MSG| Scraping https://screenrant.com/x-men-projects-in-development-rumored/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.supermegamonkey.net/chronocomic/entries/captain_america_169176.shtml ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/title/tt0014353/?ref_=rlm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.newsarama.com/15488-alpha-omega-explaining-the-x-men-s-mutant-classifications.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.spoilertv.com/2018/09/take-two-stillwater-review-were.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://comicvine.gamespot.com/rogue/4005-1446/forums/shouldnt-she-be-the-most-powerful-mutant-569294/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dub.center/dubstep-hard/4692-sympathy-mutant.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://x-mengonerogue.tumblr.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=TkULKrxe6RA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://het-reccers.livejournal.com/447955.html ...'
b' |MSG| Found article'
Name Mysterious Castle
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.mysteriouscastle.com/
Status beta
Released 2011/06/22
Updated 2011/06/22
Developer Eclectocrat
Theme Fantasy
Influences Hack, Slash, Loot, Zangband, Dwarf Fortress
Name: 321, dtype: object
http://duckduckgo.com/html/?q=%22Mysterious%20Castle%22%20AND%20Eclectocrat%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.indiedb.com/games/mysterious-castle/news/mysterious-castle-19-a-tactics-roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/news/mysterious-castle-19-a-tactics-roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nicoblog.org/pc-games/atelier-firis-the-alchemist-and-the-mysterious-journey-region-free-pc/ ...'
b' |MSG| Scraping http://indiegames.com/2016/03/helens_mysterious_castle_is_al.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefaqs.gamespot.com/pc/832016-helens-mysterious-castle/reviews/163336 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://honeysanime.com/nil-admirari-no-tenbin-the-scales-of-nil-admirari-the-mysterious-story-of-teito-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ancient-origins.net/news-ancient-places-europe/borgeby-castle-0010633 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/forums/index.php?threads/mysterious-castle-1-8-for-mac-and-windows.59171/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mysterious-castle.en.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bagogames.com/mysterious-castle-review/ ...'
b' |MSG| Scraping http://www.metacritic.com/game/pc/mysterious-castle/user-reviews ...'
b' |MSG| Found article'
b' |MSG| Scraping https://yepdownload.com/mysterious-castle ...'
b'!!FAIL!! Failed to load https://yepdownload.com/mysterious-castle'
HTTPSConnectionPool(host='yepdownload.com', port=443): Max retries exceeded with url: /mysterious-castle (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.g4g.it/2011/10/16/mysterious-castle-v1-7/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/418190/Helens_Mysterious_Castle/ ...'
b' |MSG| Scraping https://steamcommunity.com/app/418190 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/helens-mysterious-castle.html ...'
b' |MSG| Scraping https://mysterious-castle-ios.soft112.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.y8.com/games/Mysterious_Castle ...'
b' |MSG| Scraping https://rawg.io/games/mysterious-castle ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itunes.apple.com/us/app/mysterious-castle/id465647954?mt=8 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=3u_BQc_cvpo ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamefus.com/pc-download/mysterious-castle-3d-puzzle/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nullgame.com/indie-games/helens-mysterious-castle ...'
b' |MSG| Found article'
b' |MSG| Scraping https://land8.com/the-mysterious-castle-of-sir-edward-james-and-the-xilitla-garden/ ...'
b' |MSG| Scraping https://spiritdaily.org/blog/commentary/a-mysterious-castle ...'
b' |MSG| Found article'
Name Mysterious Space
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://mysteriousspace.com/
Status stable
Released 2014/3/15
Updated 2017/6/14
Developer Ben Hendel-Doying
Theme Sci-fi action space shooter
Influences Rogue Crystal Quest
Name: 322, dtype: object
http://duckduckgo.com/html/?q=%22Mysterious%20Space%22%20AND%20Ben%20Hendel-Doying%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name NLarn
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://nlarn.github.io/
Status beta
Released 2009/07/13
Updated 2012/7/6
Developer Joachim de Groot
Theme Fantasy
Influences Larn
Name: 323, dtype: object
http://duckduckgo.com/html/?q=%22NLarn%22%20AND%20Joachim%20de%20Groot%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name NPPMoria
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://nppangband.bitshepherd.net/
Status stable
Released 2003/08/10
Updated 2015/05/08
Developer Jeff Greene (''nppangbanddev''@''verizon.net'')
Theme Fantasy
Influences NPPAngband 8.0.5
Name: 324, dtype: object
http://duckduckgo.com/html/?q=%22NPPMoria%22%20AND%20Jeff%20Greene%20%28%27%27nppangbanddev%27%27%40%27%27verizon.net%27%27%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name NarwhaRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/narwharl/
Status alpha
Released 2011/00/00
Updated 2011/06/02
Developer Flouezz
Theme Fantasy
Influences Dungeon Crawl, Dwarf Fortress
Name: 325, dtype: object
http://duckduckgo.com/html/?q=%22NarwhaRL%22%20AND%20Flouezz%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Nazghul
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://myweb.cableone.net/gmcnutt/nazghul.html
Status beta
Released 2005/12/00
Updated 2009/10/16
Developer Gordon McNutt
Theme Fantasy
Influences Ultima
Name: 326, dtype: object
http://duckduckgo.com/html/?q=%22Nazghul%22%20AND%20Gordon%20McNutt%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Nebulaic Toaster
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://bitbucket.org/chromebookbob/nebulaic-t...
Status alpha
Released 2013/08/20
Updated 2013/8/20
Developer chromebookbob
Theme Space
Influences FTL
Name: 327, dtype: object
http://duckduckgo.com/html/?q=%22Nebulaic%20Toaster%22%20AND%20chromebookbob%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Necropolis
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ludusnovus.net/tag/necropolis/
Status stable
Released 2008/10/17
Updated 2008/12/13
Developer Gregory Weir
Theme NaN
Influences NaN
Name: 328, dtype: object
http://duckduckgo.com/html/?q=%22Necropolis%22%20AND%20Gregory%20Weir%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Neohack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dillingers.com/neohack/
Status alpha
Released 1000/00/00
Updated 2012/10/15
Developer Ray Dillinger
Theme fantasy
Influences NetHack, UnNetHack, SLASH'EM, Crawl, Moria
Name: 329, dtype: object
http://duckduckgo.com/html/?q=%22Neohack%22%20AND%20Ray%20Dillinger%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Neon roguelike engine
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://neon.kosmonet.be/
Status alpha
Released 2007/00/00
Updated 2014/00/00
Developer mdriesen
Theme Fantasy
Influences The Elder Scrolls, ADOM
Name: 330, dtype: object
http://duckduckgo.com/html/?q=%22Neon%20roguelike%20engine%22%20AND%20mdriesen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name NetHack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.nethack.org/
Status major
Released 1987/00/00
Updated 2015/12/08
Developer The NetHack DevTeam
Theme Fantasy, Dungeon crawl
Influences Hack
Name: 331, dtype: object
http://duckduckgo.com/html/?q=%22NetHack%22%20AND%20The%20NetHack%20DevTeam%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name NetHack-De
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://nethack-de.sourceforge.net/
Status alpha
Released 2007/00/00
Updated 2012/09/16
Developer Patric Mueller
Theme fantasy
Influences NetHack
Name: 332, dtype: object
http://duckduckgo.com/html/?q=%22NetHack-De%22%20AND%20Patric%20Mueller%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Netwhack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://tsukino.ca/play-netwhack
Status beta
Released 1997/06/24
Updated 2011/10/27
Developer Usagi
Theme Fantasy
Influences NetHack, ADOM
Name: 333, dtype: object
http://duckduckgo.com/html/?q=%22Netwhack%22%20AND%20Usagi%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Netzhack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.netzhack.de/
Status beta
Released 2008/01/21
Updated 2013/04/11
Developer Karl Breuer & Tony Crawford
Theme Fantasy
Influences NetHack 3.4.3
Name: 334, dtype: object
http://duckduckgo.com/html/?q=%22Netzhack%22%20AND%20Karl%20Breuer%20%26%20Tony%20Crawford%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name NitroHack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://nitrohack.org/
Status stable
Released 2012/01/16
Updated 2012/00/00
Developer Daniel Thaler
Theme Fantasy
Influences NetHack
Name: 335, dtype: object
http://duckduckgo.com/html/?q=%22NitroHack%22%20AND%20Daniel%20Thaler%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name NPPAngband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://nppangband.bitshepherd.net/
Status stable
Released 2003/04/24
Updated 2016/05/08
Developer Jeff Greene and Diego Gonzalez (''nppangbandde...
Theme Fantasy
Influences Angband 3.1.2
Name: 336, dtype: object
http://duckduckgo.com/html/?q=%22NPPAngband%22%20AND%20Jeff%20Greene%20and%20Diego%20Gonzalez%20%28%27%27nppangbanddev%27%27%40%27%27verizon.net%27%27%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name No Way But Down
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://play.google.com/store/apps/details?id=...
Status beta
Released 2010/12/21
Updated 2012/00/00
Developer Philip Mainwaring
Theme Fantasy
Influences ADOM
Name: 337, dtype: object
http://duckduckgo.com/html/?q=%22No%20Way%20But%20Down%22%20AND%20Philip%20Mainwaring%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name NoirRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://vedrl.wordpress.com/
Status stable
Released 2015/03/07
Updated 2015/03/07
Developer Vedor
Theme film noir
Influences noir movies, oldschool adventure games
Name: 338, dtype: object
http://duckduckgo.com/html/?q=%22NoirRL%22%20AND%20Vedor%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Noxico
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://helmet.kafuka.org/noxico/
Status alpha
Released 2012/06/07
Updated 2016/06/26
Developer Kawa
Theme Erotic fantasy
Influences Dwarf Fortress, Corruption of Champions
Name: 339, dtype: object
http://duckduckgo.com/html/?q=%22Noxico%22%20AND%20Kawa%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Numenfall
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/[http://e...
Status beta
Released 2011/00/00
Updated 2017/00/00
Developer Xan
Theme Classic
Influences ADOM, JADE, Incursion, Ragnarok, ToME
Name: 340, dtype: object
http://duckduckgo.com/html/?q=%22Numenfall%22%20AND%20Xan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Nyctos
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/nyctos/
Status beta
Released 2009/00/00
Updated 2009/03/23
Developer Max Bane
Theme Fantasy
Influences ADOM, Incursion, Crawl
Name: 341, dtype: object
http://duckduckgo.com/html/?q=%22Nyctos%22%20AND%20Max%20Bane%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name O.R.E.
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://gore.sourceforge.net/
Status alpha
Released 2008/00/00
Updated 2009/07/09
Developer xTERM
Theme fantasy
Influences ADOM, Dungeon Crawl
Name: 342, dtype: object
http://duckduckgo.com/html/?q=%22O.R.E.%22%20AND%20xTERM%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Obumbrata et Velata
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.blackswordsonics.com/martin/obumbrata/
Status stable
Released 2014/03/14
Updated 2014/03/01
Developer Martin Read
Theme Fantasy
Influences miscellaneous fantasy
Name: 343, dtype: object
http://duckduckgo.com/html/?q=%22Obumbrata%20et%20Velata%22%20AND%20Martin%20Read%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Omega
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.alcyone.com/max/projects/omega/
Status major
Released 1980/00/00
Updated 2010/02/20
Developer Laurence Brothers
Theme fantasy
Influences the Greek alphabet
Name: 344, dtype: object
http://duckduckgo.com/html/?q=%22Omega%22%20AND%20Laurence%20Brothers%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Once upon a Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://kotogames.com/games/once-upon-a-dungeon/
Status stable
Released 2018/01/19
Updated 2018/01/19
Developer Koto Games
Theme Fantasy
Influences NaN
Name: 345, dtype: object
http://duckduckgo.com/html/?q=%22Once%20upon%20a%20Dungeon%22%20AND%20Koto%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Oangband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.oangband.com/
Status stable
Released 1998/08/13
Updated 2006/02/10
Developer Bahman Rabii (''bahman''@''oangband.com'')
Theme Fantasy
Influences Angband 2.8.3
Name: 346, dtype: object
http://duckduckgo.com/html/?q=%22Oangband%22%20AND%20Bahman%20Rabii%20%28%27%27bahman%27%27%40%27%27oangband.com%27%27%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name OutlastRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/Xtricate/XOutlast
Status alpha
Released 2012/10/3
Updated 2012/10/3
Developer Xtricate
Theme Apocalypse
Influences ADOM, Dwarf Fortress, CataclysmRL
Name: 347, dtype: object
http://duckduckgo.com/html/?q=%22OutlastRL%22%20AND%20Xtricate%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Owlnest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/owlnestroguelike/
Status alpha
Released 2017/02/10
Updated 2017/03/10
Developer Anfeir (Mikhail Maryshev)
Theme Fantasy
Influences Adom
Name: 348, dtype: object
http://duckduckgo.com/html/?q=%22Owlnest%22%20AND%20Anfeir%20%28Mikhail%20Maryshev%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name POWDER
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.zincland.com/powder
Status stable
Released 2003/00/00
Updated 2011/12/23
Developer Jeff Lait
Theme Fantasy
Influences NetHack
Name: 349, dtype: object
http://duckduckgo.com/html/?q=%22POWDER%22%20AND%20Jeff%20Lait%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name PRIME
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://prime-rogue.net/
Status stable
Released 2011/03/03
Updated 2017/03/04
Developer Psiweapon<br/> // Michał Bieliński
Theme Science Fiction
Influences Zap'M (parent); NetHack, SLASH'EM
Name: 350, dtype: object
http://duckduckgo.com/html/?q=%22PRIME%22%20AND%20Psiweapon%3Cbr/%3E%20//%20Micha%26%23322%3B%20Bieli%26%23324%3Bski%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name PTR: The Roguelike
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://www.microsoft.com/en-us/store/p/ptr-th...
Status stable
Released 2017/02/27
Updated 2017/02/27
Developer Dawid Farbaniec
Theme Fantasy
Influences NaN
Name: 351, dtype: object
http://duckduckgo.com/html/?q=%22PTR%3A%20The%20Roguelike%22%20AND%20Dawid%20Farbaniec%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://download.cnet.com/PTR-The-Roguelike-for-Windows-10/3000-7536_4-77598954.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://appagg.com/windows-games/roleplaying/ptr-the-roguelike-26225245.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://download.cnet.com/s/ptr/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.appx4fun.com/xap/34799/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://appagg.com/windows-games/roleplaying/legendary-land-30805205.html ...'
b' |MSG| Found article'
Name PWMAngband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.mangband.org/forum/viewforum.php?f=9/
Status stable
Released 2007/06/30
Updated 2018/07/29
Developer PowerWyrm
Theme Tolkien
Influences MAngband 1.1.2, TomeNET 3.1.4, Angband 4.1.x
Name: 352, dtype: object
http://duckduckgo.com/html/?q=%22PWMAngband%22%20AND%20PowerWyrm%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://angband.oook.cz/forum/showthread.php?t=8459 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=_4YfU2s0jik ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tomenet.eu/phpBB3/viewtopic.php?t=1347 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bay12forums.com/smf/index.php?topic=156727.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tubethe.com/watch/BbOVl3OEnWg/igraem-s-tome-235-01-strannye-ehssencii.html ...'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://powerwyrm.monsite-orange.fr/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mangband.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.li/20130915032549/angband.oook.cz/ladder.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sites.google.com/site/mangband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forums.drivepe.com/threads/pwmangband-implementing-the-new-curses.702687/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=1187.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=1187.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=1187.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://roguelikefr.forumactif.org/t39-le-roguelike-bundle ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelikegame.blogspot.com/2016/08/pwmangband-implementing-new-curses.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alexvampire.wordpress.com/2016/01/24/roguelike-mega-collection-700-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fitweb.me/best/warspear-online-experience/ ...'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/iyzPQdRK ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ir-film.com/watch/roguelike+online+game ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tangar.info/en/igroglaz/analitycs/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=1976.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=1976.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=1976.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://mangband.org/developer/ticket/993 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://powerwyrm.monsite-orange.fr/page-56e3134c61697.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forums.te4.org/viewtopic.php?p=97954 ...'
b' |MSG| Found article'
Name PabloQuest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://pabloquest.wikispaces.com/
Status beta
Released 2011/04/16
Updated 2011/04/16
Developer Cebollinos de la Huerta
Theme Fantasy
Influences NetHack, Dwarf Fortress
Name: 353, dtype: object
http://duckduckgo.com/html/?q=%22PabloQuest%22%20AND%20Cebollinos%20de%20la%20Huerta%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://pabloquest.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://cebollinos.itch.io/pabloquest3 ...'
b' |MSG| Scraping https://cebollinos.itch.io/pabloquest ...'
b' |MSG| Found article'
b' |MSG| Scraping http://pabloquest.pablosan.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=2411.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=2411.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=2411.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://vedrl.wordpress.com/2015/06/08/unpabloquest-r1/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bay12forums.com/smf/index.php?topic=78527.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/cebollinos11 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://roguecentral.org/doryen/forum/index.php?topic=1465.0 ...'
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/oD9EpUHy/pabloquest ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.namepeeper.com/s/pablo+eleazar+sarmiento ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libraries.io/github/cebollinos11 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://xitfilms.ru/kino/PABLOQUEST ...'
b' |MSG| Found article'
Name PabloQuest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://cebollinos.itch.io/pabloquest3
Status beta
Released 2011/06/01
Updated 2011/6/1
Developer Pablo Sarmiento Merino
Theme Medieval Fantasy
Influences NetHack
Name: 354, dtype: object
http://duckduckgo.com/html/?q=%22PabloQuest%22%20AND%20Pablo%20Sarmiento%20Merino%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.pablosan.com/ ...'
b' |MSG| Scraping https://pabloquest.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=SCgfhljDlAA ...'
b' |MSG| Scraping http://www.namepeeper.com/s/pablo+eleazar+sarmiento ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.twibly.org/pablo_flecha ...'
b' |MSG| Found article'
b' |MSG| Scraping http://roguecentral.org/doryen/forum/index.php?topic=1465.0 ...'
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/oD9EpUHy/pabloquest ...'
b' |MSG| Found article'
b' |MSG| Scraping http://roguelikefr.forumactif.org/t39-le-roguelike-bundle ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mp3in.az/video/pablo-sarmiento-merino.html ...'
b' |MSG| Scraping https://libraries.io/github/cebollinos11 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://xitfilms.ru/kino/PABLOQUEST ...'
b' |MSG| Found article'
Name Papaki
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://papaki.blogspot.com/
Status alpha
Released 2004/12/13
Updated 2008/10/10
Developer Vasilis Zoumpourlis
Theme Fantasy, Mythology
Influences ADOM
Name: 355, dtype: object
http://duckduckgo.com/html/?q=%22Papaki%22%20AND%20Vasilis%20Zoumpourlis%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.papaki.com/el ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.papaki.com/en/aboutus.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.papaki.com/en/career.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://status.papaki.com/ ...'
b' |MSG| Scraping https://www.whtop.com/review/papaki.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://papaki.mx/ ...'
b' |MSG| Scraping https://www.trustpilot.com/review/papaki.gr ...'
b'!!FAIL!! Failed to load https://www.trustpilot.com/review/papaki.gr'
HTTPSConnectionPool(host='www.trustpilot.com', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping https://www.theguardian.com/notesandqueries/query/0,5753,-1773,00.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://papaki.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.roguetemple.com/reviews/papaki-vasilis-zompourlis/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.papaki.gr/en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/papaki/ ...'
b' |MSG| Scraping https://www.deviantart.com/papaki84 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://music.yandex.ru/track/17280292?lang=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://papakiartesanal.com/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=eVCzM5GfR6I ...'
b' |MSG| Scraping https://twitter.com/papaki ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indifferentlanguages.com/translate/maori-english/papaki ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/+papaki ...'
b' |MSG| Found article'
b' |MSG| Scraping https://papaki.knoji.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.linkedin.com/in/vasilis-nakos ...'
b' |MSG| Scraping http://www.core-ed.org/shop/te-reo-maori-resources/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.instagram.com/eirini_papaki/?hl=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://papaki88.livejournal.com/ ...'
b' |MSG| Found article'
Name Paper Dungeons Crawler
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://store.steampowered.com/app/754340/Pape...
Status stable
Released 2018/005/24
Updated 2018/008/02
Developer Agent Mega
Theme Fantasy
Influences Nethack
Name: 356, dtype: object
http://duckduckgo.com/html/?q=%22Paper%20Dungeons%20Crawler%22%20AND%20Agent%20Mega%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.dlh.net/en/tests/2488/paper-dungeons-crawler-review.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/754340/Paper_Dungeons_Crawler/ ...'
b' |MSG| Scraping http://gamestorrent.co/paper-dungeons-crawler.html ...'
b' |MSG| Scraping https://skidrowreloadedcodex.org/paper-dungeons-crawler/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesbae.com/paper-dungeons-crawler/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freegamesdl.net/paper-dungeons-crawler-free-pc-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/indie/paper-dungeons-crawler ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2018/09/02/interactive-credits-sequences-make-games-and-their-developers-more-memorable/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://small-games.info/?go=game&c=10&i=25953 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.steamkiwi.com/app/754340 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gametop9.com/threads/paper-dungeons-crawler-free-download.2886/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=Cu2ltveg9-Q ...'
b' |MSG| Found article'
b' |MSG| Scraping https://services.megadev.info/en/g/Paper-Dungeons-Crawler/1438 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/paper-dungeons-crawler ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.chaptercheats.com/qna/pc/410465/Paper-Dungeons-Crawler-Answers.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping http://worldgameszone.com/paper-dungeons-crawler-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefaqs.gamespot.com/mac/235759-paper-dungeons-crawler ...'
b' |MSG| Found article'
b' |MSG| Scraping https://saveorquit.com/2018/06/28/preview-paper-dungeons-crawler/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.newgamesbox.net/paper-dungeons-crawler-free-download/ ...'
b' |MSG| Scraping https://www.facebook.com/paperdungeonscrawler/?ref=page_internal ...'
b' |MSG| Scraping https://www.igdb.com/games/paper-dungeons-crawler ...'
b' |MSG| Found article'
b' |MSG| Scraping http://paperdungeonscrawler.agentmega.net/index.php/2018/07/17/paper-dungeons-crawler-is-coming-out-of-early-access-today/ ...'
b'!!FAIL!! Failed to load http://paperdungeonscrawler.agentmega.net/index.php/2018/07/17/paper-dungeons-crawler-is-coming-out-of-early-access-today/'
HTTPConnectionPool(host='paperdungeonscrawler.agentmega.net', port=80): Read timed out. (read timeout=15.1)
b' |MSG| Scraping https://www.guspi.com/paper-dungeons-crawler/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://igg-games.com/paper-dungeons-crawler-free-download-pc.html ...'
b' |MSG| Scraping http://www.icoapk.com/2018/08/18/paper-dungeons-crawler-free-download/ ...'
b' |MSG| Found article'
Name Peleron's Brilliant Rebirth
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.kolumbus.fi/topi_ylinen/peleron//
Status alpha
Released 2007/00/00
Updated 2007/05/17
Developer Topi Ylinen
Theme Fantasy
Influences NaN
Name: 357, dtype: object
http://duckduckgo.com/html/?q=%22Peleron%27s%20Brilliant%20Rebirth%22%20AND%20Topi%20Ylinen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://blog.roguetemple.com/2009/03/05/mini-inverview-with-topi-ylinen/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.roguetemple.com/category/new-roguelikes/page/2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.roguetemple.com/category/interviews/page/2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikes/comments/nk6yq/any_roguelikes_based_around_controlling_a_party/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.roguetemple.com/category/releases-wire/page/2/ ...'
b' |MSG| Found article'
Name PernAngband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://pernband.sourceforge.net/
Status major
Released 1999/00/00
Updated 2002/00/00
Developer DarkGod
Theme Fantasy
Influences Anne McCaffrey's Pern, Angband, ZAngband
Name: 358, dtype: object
http://duckduckgo.com/html/?q=%22PernAngband%22%20AND%20DarkGod%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://steamcommunity.com/app/259680/discussions/1/630800446842058205/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://lotr.wikia.com/wiki/Tales ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.cultin.ru/game-tome ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usgamer.net/articles/infinite-dungeons-infinite-death-tales-of-majeyal-pc-review ...'
b' |MSG| Scraping http://wikiredia.ru/wiki/Tales_of_Maj%27Eyal ...'
b' |MSG| Found article'
b' |MSG| Scraping https://te4.org/tome1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.old-games.ru/forum/threads/tales-of-majeyal-i-t-engine.53323/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rivercityrandom.wordpress.com/2006/12/24/review-tome-tales-of-middle-earth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.roguetemple.com/2011/01/15/tome4/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.li/FGPZz ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/forums/index.php?threads/tales-of-majeyal-ashes-of-urhrok-expansion-released.95028/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://fr.wikipedi0.org/wiki/PernAngband ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.oldgamesfinder.com/?m=2&q=Pernangband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikes/wiki/faq ...'
b' |MSG| Found article'
b' |MSG| Scraping https://maildb.io/company/pernangband.net ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tomenet.eu/phpBB3/viewtopic.php?t=1317 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://videotalk.livejournal.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://wiki-org.ru/wiki/T.o.M.E. ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.freegamearchive.com/download-games/freeware/rpg/tales-of-middle-earth/18866 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bay12forums.com/smf/index.php?topic=65887.0 ...'
b' |MSG| Scraping https://openqnx.com/newsgroups/viewtopic.php?t=4201 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://enacademic.com/dic.nsf/enwiki/445580 ...'
b'!!FAIL!! Failed to load https://enacademic.com/dic.nsf/enwiki/445580'
HTTPSConnectionPool(host='enacademic.com', port=443): Max retries exceeded with url: /dic.nsf/enwiki/445580 (Caused by SSLError(CertificateError("hostname 'enacademic.com' doesn't match either of '*.academic.ru', 'academic.ru'",),))
b' |MSG| Scraping https://lparchive.org/Troubles-of-Middle-Earth/Update%2001/ ...'
b' |MSG| Found article'
Name Pirate Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dagondev.itch.io/piraterogue
Status unknown
Released 1000/00/00
Updated 1000/00/00
Developer DagonDev
Theme Pirate, Grim
Influences Port Royale, Sid Meier Pirates, Windward, Dark...
Name: 359, dtype: object
http://duckduckgo.com/html/?q=%22Pirate%20Rogue%22%20AND%20DagonDev%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.hearthpwn.com/decks/899880-kft-legend-pirate-rogue-updated ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dotesports.com/the-op/hearthstone/news/pirate-rogue-end-journey-30204 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmorpg.com/columns/shadows-awakening-review-fantastic-and-flawed-1000012985 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thesaurus.plus/related/pirate/rogue_trader ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamer.com/games-troll-players-hacking-ban/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/piraterogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkhome.net/booty-quest-match-3-pirate-treasure-game-1-25-1-apk-mod/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=TrKq3DPsWzA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dailystar.co.uk/tech/gaming/705870/Sea-of-Thieves-Forsaken-Shores-Release-date-gameplay-EVERYTHING-we-know-so-far-September-2 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/news/2018/09/guide_upcoming_nintendo_switch_games_and_accessories_for_september_and_october ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ancient-origins.net/history/history-of-dogs-and-us-0010631 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.liquidhearth.com/forum/constructed-strategy/494085-deck-ideas-dragon-pally-and-pirate-rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamer.com/ps2-games-best-overrated/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://variety.com/2018/gaming/news/tencent-hurt-as-china-crimps-games-for-health-reasons-1202922889/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tempostorm.com/hearthstone/decks/pirate-rogue-standard-meta-snapshot-august-19-2017 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://hsdecksandguides.com/decks-counter-pirate-warrior/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4931.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4931.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4931.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://hearthranger.wikia.com/wiki/Aggro_Pirate_Rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.icy-veins.com/hearthstone/pirate-aggro-rogue-wild-deck ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hearthstonetopdecks.com/decks/rufengs-aggro-pirate-rogue-rank-1-legend-cn-mean-streets-gadgetzan/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dagondev.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://hearthstone.gamepedia.com/Pirate ...'
b' |MSG| Found article'
b' |MSG| Scraping https://the-pirate-game.obsidianportal.com/wiki_pages/character-creation ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dsobot.com/forum/yaf_postsm45811_Pirate-Rogue--Gold-Portrait-Farming.aspx ...'
Name Pixel Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://pixeldungeon.watabou.ru/
Status stable
Released 2012/12/04
Updated 2015/09/04
Developer Watabou
Theme Fantasy
Influences Brogue
Name: 360, dtype: object
http://duckduckgo.com/html/?q=%22Pixel%20Dungeon%22%20AND%20Watabou%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://pixeldungeon.watabou.ru/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/watabou/pixel-dungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping http://pixeldungeon.wikia.com/wiki/Watabou ...'
b' |MSG| Found article'
b' |MSG| Scraping http://pixeldungeon.tumblr.com/post/93210548010/open-source ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/review/pixel-dungeon.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/365900/Pixel_Dungeon/ ...'
b' |MSG| Scraping https://apkhome.net/grand-battle-royale-pixel-fps-3-2-2-apk-data/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alternativeto.net/software/shattered-pixel-dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=h7UvWL9EPE8 ...'
b' |MSG| Scraping https://itunes.apple.com/us/app/pixel-dungeon/id1002210090?mt=8 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/PixelDungeon/wiki/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roonby.com/2016/12/13/pixel-dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://watabou.itch.io/pixel-dungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.slant.co/topics/2460/viewpoints/15/~android-games-with-randomly-generated-levels~pixel-dungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/blogs/EmanuelMontero/20110112/87194/Postmortem_Pixel_Dungeon.php ...'
b' |MSG| Found article'
b' |MSG| Scraping http://addictedgamewise.com/pixel-dungeons-1-first-impressions/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pixel-dungeon-ios.soft112.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://temcam.com/2015/03/03/pixel-dungeon-for-pc/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=482790924 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.watabou.pixeldungeon&hl=en_GB ...'
b' |MSG| Scraping http://openpixeldungeon.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://blog.en.uptodown.com/pixel-dungeon/ ...'
b' |MSG| Scraping https://nullgame.com/indie-games/pixel-dungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tpsort.com/similar-to/56858-top-15-shattered-pixel-dungeon-alternative-and-similar-games ...'
b' |MSG| Scraping http://appcrawlr.com/android/pixel-dungeon ...'
b' |MSG| Found article'
Name Plains of Sedia
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.theoestudio.com/
Status alpha
Released 2009/11/05
Updated 2009/11/5
Developer Nathaniel Inman
Theme Fantasy
Influences NetHack, DikuMud
Name: 361, dtype: object
http://duckduckgo.com/html/?q=%22Plains%20of%20Sedia%22%20AND%20Nathaniel%20Inman%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://archive.li/TPyvN ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.li/G0Ti7 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.brothergames.com/pc/plains_of_sedia-376251.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/theoestudio ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.pcgames4u.com/download/plains-of-sedia.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://games.pyroso.com/full-download-game/3955-plains-of-sedia.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sourcecodeonline.com/details/plains_of_sedia_clay.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.softpicks.net/software/Games/Tools-Editors/Plains-of-Sedia-324435.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.filebuzz.com/fileinfo/223904/Plains_of_Sedia_Clay.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://great-plains.smartcode.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.fileguru.com/Plains-Of-Sedia-Clay/info ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.download32.com/plains-of-sedia-clay-i172670.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://games.klecool.com/tag/lita.html ...'
b' |MSG| Found article'
Name Pocket Realms
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://jraven.itch.io/pocket-realms
Status stable
Released 2018/4/7
Updated 2018/6/2
Developer Jonathan Otcasek
Theme Traditional
Influences Nethack, Crawl
Name: 362, dtype: object
http://duckduckgo.com/html/?q=%22Pocket%20Realms%22%20AND%20Jonathan%20Otcasek%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://sameapk.com/pocket-realms/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/pocket-realms ...'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.JRavenGames.PocketRealms.andfull&hl=ru ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ru.downloadatoz.com/pocket-realms-lite/com.JRavenGames.PocketRealms.andfree/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://appadvice.com/app/pocket-realms/1367091020 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.premiumtimesng.com/news/top-news/282180-ex-president-jonathan-honoured-as-icon-of-democracy.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://wikiapk.com/pocket-realms-apk-by-jonathan-otcasek/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://androidappsgame.net/pocket-realms ...'
b' |MSG| Found article'
b' |MSG| Scraping https://AppAgg.com/developer/jonathan-otcasek/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/developer?id=Jonathan+Otcasek&hl=ka ...'
b' |MSG| Found article'
b' |MSG| Scraping https://minecraft.gamepedia.com/Realms ...'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=5564.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=5564.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=5564.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://itunes.apple.com/tr/app/pocket-realms/id1367091020?l=tr ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freestore.app/developer/Jonathan%2BOtcasek ...'
b'!!FAIL!! Failed to load https://www.freestore.app/developer/Jonathan%2BOtcasek'
HTTPSConnectionPool(host='www.freestore.app', port=443): Max retries exceeded with url: /developer/Jonathan%2BOtcasek (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', '')],)",),))
b' |MSG| Scraping https://whatoplay.com/ios/pocket-realms/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.apkmonk.com/app/cl.thumbsoft.pocketrealm/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://appsftw.com/app/pocket-realms/reviews ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=na0AwPX8xhI ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki.vg/Pocket_Realms ...'
b' |MSG| Found article'
b' |MSG| Scraping http://firal.ru/app/1367091020/pocket-realms ...'
b' |MSG| Found article'
b' |MSG| Scraping https://download.cnet.com/Pocket-Realms/3000-7536_4-77879794.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://androidappsapk.co/amp/pocket-realms/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://androidapk-s.com/app/1367091020/pocket-realms ...'
b' |MSG| Found article'
Name PonyRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ponyrl.com/
Status beta
Released 2013/03/00
Updated 2015/12/25
Developer Elthari
Theme Equestria
Influences Desktop Dungeons
Name: 363, dtype: object
http://duckduckgo.com/html/?q=%22PonyRL%22%20AND%20Elthari%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name PortalRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.users.on.net/~rossn/portal/
Status alpha
Released 2008/00/00
Updated 2008/10/17
Developer NaN
Theme sci-fi
Influences Portal
Name: 364, dtype: object
http://duckduckgo.com/html/?q=%22PortalRL%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Portralis
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://variaz.proboards3.com/
Status beta
Released 2007/04/05
Updated 2010/01/03
Developer Variaz (variaz@hotmail.com)
Theme Fantasy
Influences NewAngband 1.7.1
Name: 365, dtype: object
http://duckduckgo.com/html/?q=%22Portralis%22%20AND%20Variaz%20%28variaz%40hotmail.com%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Possession 2
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://possession2.com/
Status unknown
Released 1000/00/00
Updated 2016/11/02
Developer Taylor Vaughan
Theme Humor/Fantasy/Horror
Influences ToME, Brogue, Dungeons of Dredmor, Dungeon Cra...
Name: 366, dtype: object
http://duckduckgo.com/html/?q=%22Possession%202%22%20AND%20Taylor%20Vaughan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name PosBand
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://posband.psd-solutions.com/
Status alpha
Released 2004/03/06
Updated 2006/01/23
Developer Alexander Ulyanov // Graham 'Avenger' Philips
Theme Fantasy
Influences Angband 3.0.3
Name: 367, dtype: object
http://duckduckgo.com/html/?q=%22PosBand%22%20AND%20Alexander%20Ulyanov%20//%20Graham%20%27Avenger%27%20Philips%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name PrincessRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://flend.net/
Status stable
Released 2010/03/15
Updated 2010/03/01
Developer flend
Theme fantasy
Influences Princess Maker, DDRogue
Name: 368, dtype: object
http://duckduckgo.com/html/?q=%22PrincessRL%22%20AND%20flend%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Professional Adventurers' League
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://www.dropbox.com/s/u0cp82z0zm79r0g/Prof...
Status stable
Released 2016/02/09
Updated 2016/10/13
Developer Michael Widler
Theme Fantasy, Sports
Influences Shiren, QuickHack
Name: 369, dtype: object
http://duckduckgo.com/html/?q=%22Professional%20Adventurers%27%20League%22%20AND%20Michael%20Widler%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name Project TDoIPS
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://gamejolt.com/games/project-tdoips/217501
Status beta
Released 2016/12/12
Updated 2016/12/16
Developer RagnarQuantumdustssen
Theme Sci-Fi
Influences TIS-100, Coffeebreak roguelikes
Name: 370, dtype: object
http://duckduckgo.com/html/?q=%22Project%20TDoIPS%22%20AND%20RagnarQuantumdustssen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.dlh.net/en/gaming-news/59695/8-circuit-studios-unveils-space-survival-title-project-genesis.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gameskinny.com/z0vch/fallout-4-project-valkyrie-mod-quest-guide ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bitcointalk.org/index.php?topic=4968378.60 ...'
b' |MSG| Scraping https://gamejolt.com/games/project-tdoips/217501 ...'
b' |MSG| Scraping https://www.nexusmods.com/twopointhospital/news/13150 ...'
b' |MSG| Scraping https://www.nexusmods.com/twopointhospital/news/13105 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eventhubs.com/news/2018/aug/31/netherrealm-studios-working-new-game-and-theres-good-chance-its-mortal-kombat-11-which-characters-do-you-want-see-return/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiewire.com/2018/09/peterloo-review-mike-leigh-historical-drama-venice-1201999738/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmorpg.com/columns/shadows-awakening-review-fantastic-and-flawed-1000012985 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://community.openfl.org/latest?no_definitions=true&no_subcategories=false&page=52 ...'
b' |MSG| Scraping https://vasilijgrigorevnoneexist.github.io/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://beforeitsnews.com/v3/science-and-technology/2018/2933729.html ...'
b' |MSG| Found article'
Name Prospector
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.prospector.at/
Status beta
Released 2009/02/18
Updated 2017/05/01
Developer magellan (Matthias Mennel)
Theme Science Fiction, Alien Planets
Influences Traveller, Starflight
Name: 371, dtype: object
http://duckduckgo.com/html/?q=%22Prospector%22%20AND%20magellan%20%28Matthias%20Mennel%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://prospector.wikia.com/wiki/FAQ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thexvid.com/rev/prospector+game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ebrary.net/3737/management/miles_snows_typology_defender_prospector_analyzer_reactor ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.prospectorreview.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://theprospector.net/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.prospector.at/ ...'
b' |MSG| Scraping https://ibol17.wordpress.com/inspiration/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.prospector-info.com.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ulprospector.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://chsprospector.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.prospectorpro.co/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fbprospector.com/sp-fbp-pdf/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.the-prospector.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freegamesutopia.com/game/prospector/288/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.prospector-re.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theprospector.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.silentprospector.com/ ...'
b' |MSG| Scraping https://www.appleisleprospector.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.magicprospector.com/ ...'
b' |MSG| Scraping https://mshsprospector.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://prospector.org.uk/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.strategy-implementation.24xls.com/en122 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=9xYjqiafwfM ...'
b' |MSG| Scraping https://www.theprospectordaily.com/ ...'
b' |MSG| Found article'
Name Pugnacious Wizards 2
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://trystans.blogspot.com/2013/09/pugnaciou...
Status stable
Released 2013/06/07
Updated 2013/09/22
Developer Trystan Spangler
Theme NaN
Influences NaN
Name: 372, dtype: object
http://duckduckgo.com/html/?q=%22Pugnacious%20Wizards%202%22%20AND%20Trystan%20Spangler%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://trystans.blogspot.com/2013/09/pugnacious-wizards-2-retrospective.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://trystans.blogspot.com/2013/09/pugnacious-wizards-2-version-10.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=VOBCScsew54 ...'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=3449.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=3449.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=3449.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.letsplayindex.com/videos/16548907-2013-arrp-pugnacious-wizards-2-theuberhunter ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://longnife.tumblr.com/post/65002629035/trystans-blog-pugnacious-wizards-2 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
Name Quarker
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://squidpony.com/
Status alpha
Released 2008/07/08
Updated 2008/09/09
Developer Eben Howard
Theme Surreal
Influences Quantum Mechanics
Name: 373, dtype: object
http://duckduckgo.com/html/?q=%22Quarker%22%20AND%20Eben%20Howard%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://quarkerdev.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://quarker.tistory.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://groups.google.com/d/topic/rec.games.roguelike.development/sqv_qioX0Ok ...'
b' |MSG| Found article'
b' |MSG| Scraping https://quarker.livejournal.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://quarktalk.cc/threads/new-quarkers-important-read.119/page-4 ...'
b'!!FAIL!! Failed to load https://quarktalk.cc/threads/new-quarkers-important-read.119/page-4'
HTTPSConnectionPool(host='quarktalk.cc', port=443): Max retries exceeded with url: /threads/new-quarkers-important-read.119/page-4 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://github.com/SquidPony ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/channel/UCdpp8cL_9p08_qY0WlasjzQ ...'
b' |MSG| Scraping http://www.quarker.de/ ...'
b' |MSG| Scraping https://twitter.com/quarkers ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rlgclub.ru/wiki/Quarker ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.theancestorhunt.com/blog/new-york-online-historical-newspapers-summary1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.escapefromtarkov.com/profile/88418-quarker/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.geocities.ws/eben.howard/ ...'
b' |MSG| Scraping http://www.ad-archive.com/2018/05/27/quarker-best-mornings-made/ ...'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=195.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=195.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=195.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.healthgrades.com/providers/david-quarker-xymkgld ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.geni.com/people/James-Grear-of-Gunpowder-River/6000000004871239894 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sysoon.com/name/quarker ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamedesire.com/iw/player/quarker/achievements/5000 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nickfinder.com/quarker ...'
b' |MSG| Scraping http://www.namespedia.com/details/Quarker ...'
b' |MSG| Scraping https://www.linkedin.com/in/david-quarker-12012943 ...'
b' |MSG| Scraping https://www.myheritage.com/names/quarker_merritt ...'
b' |MSG| Found article'
b' |MSG| Scraping http://darkmatters.org/forums/index.php?/profile/6388-quarker/ ...'
Name Quest for the Unicorn
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.elf-emulation.com/rcs/unicorn5/inde...
Status stable
Released 1990/00/00
Updated 2016/07/19
Developer Mike Riley
Theme Fantasy
Influences Rogue
Name: 374, dtype: object
http://duckduckgo.com/html/?q=%22Quest%20for%20the%20Unicorn%22%20AND%20Mike%20Riley%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://crpgaddict.blogspot.com/2015/03/quest-for-unicorn-won-with-final-rating.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rpgwatch.com/games/quest-for-the-unicorn-919/news.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=paiYodNIWEA ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.elf-emulation.com/rcs/unicorn5/ ...'
b' |MSG| Scraping https://www.kidsbookseries.com/fancy-nancy/and-the-quest-for-the-unicorn/ ...'
b' |MSG| Scraping https://www.goodreads.com/book/show/1927207.Treasures_of_the_Unicorn ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ebookspdfonline.com/ebooks/fancy-nancy-and-the-quest-for-the-unicorn/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.jessicaschillinger.us/2015/blog/the-dangerous-quest-for-the-unicorn/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.uoduckstore.com/Fancy-Nancy-and-the-Quest-for-the-Unicorn-006237794 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.tumblr.com/search/quest+for+the+unicorn ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thriftbooks.com/w/treasures-of-the-unicorn-the-return-to-the-sacred-quest_ted-andrews/1147504/ ...'
b' |MSG| Scraping https://www.slideserve.com/heinz/the-quest-for-the-unicorn-sword ...'
b' |MSG| Found article'
b' |MSG| Scraping http://disneythemeparks.wikia.com/wiki/Quest_for_the_Unicorn ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.harpercollins.com/9780062377944/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.search.com/video/History-of-the-Unicorn ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hinesofoxford.com/the-quest-for-the-unicorn-tapestry.html ...'
b'!!FAIL!! Failed to load https://www.hinesofoxford.com/the-quest-for-the-unicorn-tapestry.html'
HTTPSConnectionPool(host='www.hinesofoxford.com', port=443): Max retries exceeded with url: /the-quest-for-the-unicorn-tapestry.html (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.visiontv.ca/shows/quest-for-the-unicorn/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.fantasticfiction.com/o/jane-oconnor/quest-for-the-unicorn.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.tvguide.com/tvshows/quest-for-the-unicorn/517873/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rarebooks.me/read/the-unicorn-s-quest/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mouseplanet.com/7150/Quest_for_the_Unicorn ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sourcelibraries.com/browse/quest-for-the-unicorn/ ...'
b'!!FAIL!! Failed to load https://sourcelibraries.com/browse/quest-for-the-unicorn/'
The label b'xn--nn8h7el3c' is not a valid A-label
b' |MSG| Scraping https://www.disboards.com/threads/newsies-quest-for-the-unicorn-pinata-a-julaugust-tr-finished-9-21.3624115/ ...'
b' |MSG| Scraping https://basebooks.me/download/the-unicorn-quest/ ...'
b' |MSG| Found article'
Name QuickHack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://docs.google.com/file/d/0B6oeeUZo0SLSdU...
Status stable
Released 2012/07/04
Updated 2013/02/05
Developer Michael Widler
Theme Arcade Fantasy
Influences Shiren the Wanderer, DoomRL, Rogue
Name: 375, dtype: object
http://duckduckgo.com/html/?q=%22QuickHack%22%20AND%20Michael%20Widler%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Quickband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://angband.oook.cz/quickband/
Status stable
Released 2005/07/01
Updated 2012/12/02
Developer Antoine
Theme Fantasy
Influences NPPAngband 0.5.3
Name: 376, dtype: object
http://duckduckgo.com/html/?q=%22Quickband%22%20AND%20Antoine%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name ROGUElike ONE
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://slashware.net/roguelikeone/
Status stable
Released 2016/12/16
Updated 2016/12/27
Developer Slash
Theme Science Fiction
Influences DoomRL, Rogue, Rodney
Name: 377, dtype: object
http://duckduckgo.com/html/?q=%22ROGUElike%20ONE%22%20AND%20Slash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name RRRSAncientBlade
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rrrsroguelike.codeplex.com/
Status beta
Released 2012/00/00
Updated 2013/05/03
Developer Dommillar, Asads2012, LogicalInsanity, mrcardor
Theme Really really really simple
Influences NaN
Name: 378, dtype: object
http://duckduckgo.com/html/?q=%22RRRSAncientBlade%22%20AND%20Dommillar%20OR%20%20Asads2012%20OR%20%20LogicalInsanity%20OR%20%20mrcardor%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Ragnarok/Valhalla
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguelikes.sauceforge.net/pub/ragnarok/
Status stable
Released 1992/00/00
Updated 1995/00/00
Developer Thomas Boyd, Rob Vawter
Theme Norse mythology
Influences NetHack
Name: 379, dtype: object
http://duckduckgo.com/html/?q=%22Ragnarok/Valhalla%22%20AND%20Thomas%20Boyd%20OR%20%20Rob%20Vawter%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://pipl.com/ ...'
b' |MSG| Scraping https://www.legacy.com/obituaries/charlotte/browse ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.legacy.com/obituaries/pressdemocrat/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.go365.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.cjonline.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/name/nm0000501/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://cold.govops.ca.gov/ ...'
b' |MSG| Scraping http://watermanusa.com/ ...'
b' |MSG| Scraping http://www.union-bulletin.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/name/nm0000655/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gbi.georgia.gov/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.homefacts.com/ ...'
b' |MSG| Scraping https://www.intelius.com/people-search ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ala.org/alsc/awardsgrants/bookmedia/newberymedal/newberyhonors/newberymedal ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.akc.org/puppies/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://leaderpost.remembering.ca/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.maps.vt.edu/ ...'
b' |MSG| Scraping https://www.archives.gov/research/military/veterans/aad.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://glorecords.blm.gov/default.aspx ...'
b' |MSG| Scraping https://www.southwest.com/flight/select-flight.html ...'
b' |MSG| Scraping https://www.biography.com/news/section/history-and-culture ...'
b' |MSG| Found article'
b' |MSG| Scraping https://findagrave.com/memorial/search ...'
b' |MSG| Scraping https://florida.arrests.org/index.php?county=3 ...'
Name RailRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ondras.github.io/railrl/
Status alpha
Released 2012/09/15
Updated 2012/09/15
Developer Ondras
Theme Classic
Influences Transport Tycoon
Name: 380, dtype: object
http://duckduckgo.com/html/?q=%22RailRL%22%20AND%20Ondras%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://github.com/ondras/railrl ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ondras.zarovi.cz/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ondras.github.io/railrl/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=lPZ0_SfDLPA ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=2678.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=2678.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=2678.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://hub.docker.com/r/vitchyr/railrl-vitchyr-gpu/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/2wqQ4QQq ...'
b' |MSG| Scraping http://mail.loginella.com/rail ...'
Name Ransack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://play.google.com/store/apps/details?id=...
Status beta
Released 2012/00/00
Updated 2012/00/00
Developer D. Allen
Theme NaN
Influences NaN
Name: 381, dtype: object
http://duckduckgo.com/html/?q=%22Ransack%22%20AND%20D.%20Allen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://github.com/activerecord-hackery/ransack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/activerecord-hackery/ransack/wiki ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=iJ_I9-CkzDE ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/activerecord-hackery/ransack/blob/master/lib/ransack/nodes/condition.rb ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/activerecord-hackery/ransack/wiki/basic-searching ...'
b' |MSG| Found article'
b' |MSG| Scraping https://stackoverflow.com/questions/12940629/make-an-or-with-ransack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mythicsoft.com/agentransack/ ...'
b'!!FAIL!! Failed to load https://www.mythicsoft.com/agentransack/'
HTTPSConnectionPool(host='www.mythicsoft.com', port=443): Max retries exceeded with url: /agentransack/ (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.pygame.org/project/2408 ...'
b' |MSG| Scraping https://gamejolt.com/games/ransack/99084 ...'
b' |MSG| Scraping https://wikidiff.com/ransack/loot ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.myabandonware.com/game/ransack-51g ...'
b' |MSG| Scraping https://en.wiktionary.org/wiki/ransack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://qiita.com/nysalor/items/9a95d91f2b97a08b96b0 ...'
b' |MSG| Scraping https://www.slideshare.net/maimai771/ransack-ransack-ransack ...'
b' |MSG| Scraping http://www.yourdictionary.com/ransack ...'
b' |MSG| Scraping http://ddowiki.com/page/Chest_ransack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://anadea.info/blog/ultimate-index-pages-by-ransack ...'
b' |MSG| Scraping https://alankydd.wordpress.com/2012/03/12/sort-a-table-of-records-in-rails-with-ransack/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.omnilexica.com/?q=ransack ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ransack01.tumblr.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://agent-ransack.it.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefreedictionary.com/ransack ...'
b' |MSG| Scraping http://ransackweb.com/ ...'
b' |MSG| Scraping http://transformersprime.wikia.com/wiki/Ransack ...'
b' |MSG| Found article'
Name Rayel
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://anfeir.ter12.ru/rayel.htm
Status beta
Released 2010/03/05
Updated 2011/04/18
Developer Anfeir
Theme Fantasy
Influences Daggerfall, ADOM, ArcticMUD
Name: 382, dtype: object
http://duckduckgo.com/html/?q=%22Rayel%22%20AND%20Anfeir%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://motherboard.vice.com/en_us/article/4xanym/lord-rayel-is-an-internet-deity-who- ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=jkdL1o_Gh1Y ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.GameDev.ru/projects/forum/?id=130685 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://andrewrayel.net/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=G9eTF232K9g ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.culteducation.com/group/1289-general-information/26881-meet-lord-rayel-risen-christ-and-failed-politician-who-ruined-a-young-man-s-nfl-prospects.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=13lyuDEte4U ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ranker.com/review/andrew-rayel/74261821 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://vk.com/andrewrayel ...'
b' |MSG| Found article'
b' |MSG| Scraping http://freake.ru/162555 ...'
b' |MSG| Scraping https://colosseum.id/events/andrew-rayel/ ...'
b' |MSG| Scraping https://falseprophetsexposed.wordpress.com/2016/05/19/lord-rayel-ra-el-raymond-lear/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/communities/106780730018259182426 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rayel-o.tumblr.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://zvooq.online/tracks/andrew-rayel ...'
b' |MSG| Scraping https://www.facebook.com/Andrew.Rayel/?fref=mentions ...'
b' |MSG| Scraping http://rayel.net/ ...'
b' |MSG| Scraping https://www.yooying.com/andrew_rayel ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wikifame.org/wiki/Andrew-Rayel ...'
b'!!FAIL!! Failed to load https://www.wikifame.org/wiki/Andrew-Rayel'
HTTPSConnectionPool(host='www.wikifame.org', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://www.dailymail.co.uk/news/article-2573946/Football-star-left-NFL-combine-message-God-devoted-mystery-MESSIAH-claims-second-coming-predicted-training-no-show.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rayel.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alchetron.com/Andrew-Rayel ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itunes.apple.com/jp/artist/andrew-rayel/398302807?l=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.1001tracklists.com/tracklist/h0lf929/andrew-rayel-project-zero-nye-hordern-pavilion-sydney-australia-2016-12-31.html ...'
b' |MSG| Found article'
Name RealtimeRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://web.archive.org/web/20090411230522/http...
Status beta
Released 2008/12/06
Updated 2009/04/04
Developer John Palmer
Theme Fantasy
Influences NetHack
Name: 383, dtype: object
http://duckduckgo.com/html/?q=%22RealtimeRL%22%20AND%20John%20Palmer%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.facebook.com/RealTimeCollectionHall/?ref=py_c ...'
b' |MSG| Scraping http://www.brothergames.com/pc/realtimerl-540642.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://realtimerl.com.danidns.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.htmlstatus.com/www.realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://builtwith.com/realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.email-format.com/d/realtimerl.com/ ...'
b' |MSG| Scraping http://urlm.co/www.realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://webinsider.me/realtimerl.net ...'
b' |MSG| Found article'
b' |MSG| Scraping http://turkey.estimatedwebsite.co.uk/realtimerl.com ...'
b' |MSG| Scraping https://sur.ly/i/realtimerl.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.webdoct.org/www.realtimerl.com ...'
b' |MSG| Scraping https://www.iswebsitesafe.net/d/realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ntviser.site/www.realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tweetvalue.com/www/realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://siterankdata.com/realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.easycounter.com/report/realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://themecraft.net/www/realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.iswebsitedownnow.com/d/realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://who.is/whois/realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://urlm.co.uk/www.world-challenge.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mainkeys.net/realtimerl.com ...'
b' |MSG| Found article'
b' |MSG| Scraping https://followsite.net/www.realtimerl.com ...'
b' |MSG| Scraping http://www.domainanls.com/www/realtimerl.com ...'
b'!!FAIL!! Failed to load http://www.domainanls.com/www/realtimerl.com'
('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))
Name Reaping the Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php?
Status stable
Released 1994/00/00
Updated 1000/00/00
Developer Ron Heuse
Theme Science Fiction
Influences ?
Name: 384, dtype: object
http://duckduckgo.com/html/?q=%22Reaping%20the%20Dungeon%22%20AND%20Ron%20Heuse%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=wkKgGaQH2Uo ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ReapingTheDungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://enacademic.com/dic.nsf/enwiki/6970773 ...'
b'!!FAIL!! Failed to load https://enacademic.com/dic.nsf/enwiki/6970773'
HTTPSConnectionPool(host='enacademic.com', port=443): Max retries exceeded with url: /dic.nsf/enwiki/6970773 (Caused by SSLError(CertificateError("hostname 'enacademic.com' doesn't match either of '*.academic.ru', 'academic.ru'",),))
b' |MSG| Scraping http://www.abandonware.ws/reaping_the_dungeon.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dosgames.com/game/reaping-the-dungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.myabandonware.com/game/reaping-the-dungeon-31f ...'
b' |MSG| Scraping https://classicreload.com/reaping-the-dungeon.html ...'
b' |MSG| Scraping https://www.abandonwaredos.com/abandonware-game.php?abandonware=Reaping+The+Dungeon&gid=2576 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://goldenageofgames.com/reaping-the-dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.classicgames.me/reaping-the-dungeon.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.pcgaming.ws/viewgame.php?game=reaping_the_dungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://playclassic.games/game/play-reaping-the-dungeon-online/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.old-games.com/download/8154/reaping-the-dungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/reaping-the-dungeon ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.xtdos.com/reaping-the-dungeon ...'
b' |MSG| Scraping https://en.ostrog.com/reaping-the-dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.oldgamesfinder.com/?m=1&q=Reaping%20The%20Dungeon ...'
b' |MSG| Scraping http://www.xtcabandonware.com/game/2363/ ...'
b' |MSG| Scraping http://www.game-ost.com/games/7445/reaping_the_dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.pcgamesabandonware.com/en/gameitems/reaping-the-dungeon/250 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dosgames.ru/games/dos/reaping_the_dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dosvideogames.com/play/reaping-the-dungeon ...'
b' |MSG| Scraping https://www.squakenet.com/download/reaping-the-dungeon/13493/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wikiyy.com/wiki/Wikipedia:Articles_for_deletion/Reaping_The_Dungeon ...'
b' |MSG| Found article'
Name Red Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.redrogue.net/
Status stable
Released 2012/12/04
Updated 2016/03/10
Developer Aaron Steed
Theme Traditional / Platformer
Influences Rogue, Hack, Spelunky
Name: 385, dtype: object
http://duckduckgo.com/html/?q=%22Red%20Rogue%22%20AND%20Aaron%20Steed%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Red Wizard
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.sweetsoftware.co.nz/red_wizard.html
Status beta
Released 2014/02/14
Updated 2015/04/15
Developer Charles Baker
Theme Fantasy
Influences Rogue, Ultima, Pool of Radiance
Name: 386, dtype: object
http://duckduckgo.com/html/?q=%22Red%20Wizard%22%20AND%20Charles%20Baker%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Remixed Pixel Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://wiki.nyrds.net/
Status stable
Released 2014/12/28
Updated 2018/04/05
Developer NYRDS
Theme Fantasy
Influences Pixel Dungeon
Name: 387, dtype: object
http://duckduckgo.com/html/?q=%22Remixed%20Pixel%20Dungeon%22%20AND%20NYRDS%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Return to the Dungeons of Doom
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/rttdod/
Status stable
Released 2013/08/19
Updated 2013/08/19
Developer Zurn
Theme Fantasy
Influences Rogue
Name: 388, dtype: object
http://duckduckgo.com/html/?q=%22Return%20to%20the%20Dungeons%20of%20Doom%22%20AND%20Zurn%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name RevivedHack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.freewebs.com/drussell/#RevivedHack
Status stable
Released 2011/08/31
Updated 2011/08/31
Developer Donnie Russell
Theme NaN
Influences PC Hack 3.61
Name: 389, dtype: object
http://duckduckgo.com/html/?q=%22RevivedHack%22%20AND%20Donnie%20Russell%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Lightbringer (Rhye's Quest)
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rhyesquest.blogspot.com/
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Fernando Aires Castello
Theme Fantasy
Influences The Legend Of Zelda, Final Fantasy, Tomb Raider
Name: 390, dtype: object
http://duckduckgo.com/html/?q=%22Lightbringer%20%28Rhye%27s%20Quest%29%22%20AND%20Fernando%20Aires%20Castello%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name Rings of Valor
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dowhilecompiling.blogspot.com/p/rings-o...
Status unknown
Released 2011/009/19
Updated 2011/12/27
Developer Tanthie
Theme Arena deathmatch
Influences World of Warcraft, Dungeons & Dragons, Bloodli...
Name: 391, dtype: object
http://duckduckgo.com/html/?q=%22Rings%20of%20Valor%22%20AND%20Tanthie%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://dowhilecompiling.blogspot.com/p/rings-of-valor.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dowhilecompiling.blogspot.com/2011/10/rings-of-valor-v082-released.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dowhilecompiling.blogspot.com/2011/11/adom-victory-dark-elf-assassin.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://wow.mmotop.ru/servers/29377/worlds/16189 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ringofvalor.org.domainsdata.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://xenoblade.github.io/xb2/bdat/common/ITM_PcWpn.html ...'
Name Rise of Kramora
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://play.google.com/store/apps/details?id=...
Status beta
Released 2016/03/14
Updated 2016/03/21
Developer Slash
Theme Fantasy
Influences Ananias
Name: 392, dtype: object
http://duckduckgo.com/html/?q=%22Rise%20of%20Kramora%22%20AND%20Slash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://apkpure.com/rise-of-kramora/co.slashware.legendsofrelojiah ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rise-of-kramora.apk.cafe/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blog.slashie.net/ ...'
b' |MSG| Scraping https://appsonwindows.com/apk/110159/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=co.slashware.legendsofrelojiah&hl=ru ...'
b' |MSG| Found article'
b' |MSG| Scraping https://android.mi9.com/app/co.slashware.legendsofrelojiah ...'
b' |MSG| Found article'
b' |MSG| Scraping https://android.hipstore.mobi/app?Package=co.slashware.legendsofrelojiah ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.apkmonk.com/app/co.slashware.legendsofrelojiah/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.androidappsgame.net/rise-of-kramora ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sameapk.com/rise-of-kramora/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://androidappsapk.co/amp/rise-of-kramora/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkapp.biz/Rise-of-Kramora/co.slashware.legendsofrelojiah ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.APKTurbo.com/apps/rise-of-kramora/co.slashware.legendsofrelojiah/2.0/ ...'
b'!!FAIL!! Failed to load https://www.APKTurbo.com/apps/rise-of-kramora/co.slashware.legendsofrelojiah/2.0/'
HTTPSConnectionPool(host='www.apkturbo.com', port=443): Max retries exceeded with url: /apps/rise-of-kramora/co.slashware.legendsofrelojiah/2.0/ (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', '')],)",),))
b' |MSG| Scraping https://AppAgg.com/android-games/adventure/rise-of-kramora-31758728.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apksfull.com/rise-of-kramora/co.slashware.legendsofrelojiah ...'
b'!!FAIL!! Failed to load https://apksfull.com/rise-of-kramora/co.slashware.legendsofrelojiah'
HTTPSConnectionPool(host='apksfull.com', port=443): Max retries exceeded with url: /rise-of-kramora/co.slashware.legendsofrelojiah (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'ssl3_read_bytes', '')],)",),))
b' |MSG| Scraping https://www.allfreeapk.com/rise-of-kramora,3115429/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rise-of-kramora.apkcafe.ru/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkpure.co/rise-of-kramora/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rise-of-kramora.apkcafe.es/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://windowsphoneapks.com/APK_Rise-of-Kramora_Windows-Phone.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.apkgplay.com/rise-of-kramora ...'
b' |MSG| Found article'
b' |MSG| Scraping https://m.downloadatoz.com/rise-of-kramora/co.slashware.legendsofrelojiah/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkplz.com/android-apps/rise-of-kramora ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=5003.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=5003.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=5003.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
Name rng clrc
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://jan-rl.itch.io/rng-clrc-a-roguelike
Status beta
Released 2015/09/19
Updated 2016/09/24
Developer Jan
Theme Fantasy
Influences Brogue, Nethack, Shiren the Wanderer, POWDER
Name: 393, dtype: object
http://duckduckgo.com/html/?q=%22rng%20clrc%22%20AND%20Jan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://itch.io/e/323010/jan-rl-published-rng-clrc-a-roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itch.io/games/free/tag-dungeon-crawler/tag-procedural/tag-roguelike ...'
b' |MSG| Scraping https://itch.io/games/newest/tag-dungeon-crawler/tag-turn-based?page=2 ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=IdiXdSnDrNI ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jan-rl.itch.io/rng-clrc-a-roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=M1yTW60HPT0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4744.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4744.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4744.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://jan-rl.itch.io/rng-clrc-a-roguelike/purchase ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2016/01/episode-113-end-of-2015.html ...'
b' |MSG| Found article'
Name Robinson
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://www.aaron-santos.com/
Status alpha
Released 2015/09/19
Updated 1000/00/00
Developer aaron_ds
Theme Survival
Influences Caves of Qud/UnReal World/Pixel Dungeon/Nethack
Name: 394, dtype: object
http://duckduckgo.com/html/?q=%22Robinson%22%20AND%20aaron_ds%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://everipedia.org/wiki/Aaron_Robinson/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://aaronrobinson.info/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.huffingtonpost.com/entry/aaron-robinson-central-florida-first-play_us_5b892fe7e4b0162f47222fcd ...'
b' |MSG| Scraping https://aaron-ds.itch.io/robinson ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wn.com/Aaron_Robinson ...'
b' |MSG| Scraping http://www.book-review-circle.com/robinson-crusoe-daniel-defoe.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/robinson-the-journey-review/1900-6416584/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://barobinson.com.au/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=jAuNybsa72k ...'
b' |MSG| Found article'
b' |MSG| Scraping http://aaronrobinson.net/ ...'
b' |MSG| Scraping https://twitter.com/aaronmdrobinson ...'
b' |MSG| Found article'
b' |MSG| Scraping http://porterrobinson.com/ ...'
b' |MSG| Scraping https://aaronrobinson.bandcamp.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://aaronrobinsoninc.org/ ...'
b' |MSG| Scraping https://www.thefullwiki.org/Aaron_Robinson ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.wikiquote.org/wiki/Robinson_Jeffers ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki2.org/en/Aaron_Robinson ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.robinson.com/de/de/angebote ...'
b' |MSG| Found article'
b' |MSG| Scraping http://robinsonthegame.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://robinsonshoes.gr/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.poemhunter.com/poem/post-mortem-11/ ...'
b'!!FAIL!! Failed to load https://www.poemhunter.com/poem/post-mortem-11/'
HTTPSConnectionPool(host='www.poemhunter.com', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping https://www.facebook.com/public/Aaron-Robinson ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/title/tt6120500/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.robinsonandrohe.com/ ...'
b' |MSG| Found article'
Name Robotfindskitten
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://robotfindskitten.org/
Status stable
Released 1997/00/00
Updated 2008/03/25
Developer Leonard Richardson
Theme Zen simulation
Influences NaN
Name: 395, dtype: object
http://duckduckgo.com/html/?q=%22Robotfindskitten%22%20AND%20Leonard%20Richardson%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://robotfindskitten.org/ ...'
b' |MSG| Scraping https://www.crummy.com/software/robotfindskitten/ ...'
b' |MSG| Scraping https://www.crummy.com/writing/speaking/2017-Roguelike%20Celebration/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/rfk_original_submission_1600000.3-robot ...'
b' |MSG| Found article'
b' |MSG| Scraping http://en.wikibedia.ru/wiki/Robotfindskitten ...'
b' |MSG| Scraping http://dictionary.sensagent.com/robotfindskitten/en-en/ ...'
b' |MSG| Scraping https://www.thefullwiki.org/Robotfindskitten ...'
b' |MSG| Scraping https://twitter.com/leonardr ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alchetron.com/Robotfindskitten ...'
b' |MSG| Scraping http://wiibrew.org/wiki/Robotfindskitten ...'
b' |MSG| Found article'
b' |MSG| Scraping https://robotfindskitten.soft112.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=ntVjLNl2_ro ...'
b' |MSG| Found article'
b' |MSG| Scraping https://enacademic.com/dic.nsf/enwiki/199960 ...'
b'!!FAIL!! Failed to load https://enacademic.com/dic.nsf/enwiki/199960'
HTTPSConnectionPool(host='enacademic.com', port=443): Max retries exceeded with url: /dic.nsf/enwiki/199960 (Caused by SSLError(CertificateError("hostname 'enacademic.com' doesn't match either of '*.academic.ru', 'academic.ru'",),))
b' |MSG| Scraping https://www.dosgames.com/author/leonard-richardson/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gpedia.com/en/gpedia/Robotfindskitten ...'
b' |MSG| Scraping https://libregamewiki.org/Robotfindskitten ...'
b' |MSG| Scraping https://reposcope.com/man/en/6/robotfindskitten ...'
b' |MSG| Scraping https://findwords.info/term/robotfindskitten ...'
b' |MSG| Scraping http://twopcharts.com/leonardr ...'
b' |MSG| Found article'
b' |MSG| Scraping http://blog.mwootendev.com/2012/02/post-mortem-robotfindskittencom.html ...'
b' |MSG| Scraping http://fitweb.me/best/leonard-richardson/ ...'
b' |MSG| Scraping http://starsimpson.com/rfk/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.robotfindskitten.com/ ...'
Name Rodney
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://slashware.net/rodney/
Status stable
Released 2013/05/14
Updated 2013/06/19
Developer Slash
Theme Fantasy
Influences DoomRL, Rogue
Name: 396, dtype: object
http://duckduckgo.com/html/?q=%22Rodney%22%20AND%20Slash%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rogue.rogueforge.net/
Status major
Released 1980/00/00
Updated 2007/09/27
Developer Michael Toy, Glenn Wichman, Ken Arnold
Theme Fantasy
Influences Dungeons & Dragons, Colossal Cave Adventure
Name: 397, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%22%20AND%20Michael%20Toy%20OR%20%20Glenn%20Wichman%20OR%20%20Ken%20Arnold%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rogue's Souls
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://forums.tigsource.com/index.php?topic=26...
Status alpha
Released 2012/00/00
Updated 2013/06/00
Developer C.A. Sinclair
Theme fantasy, dark fantasy
Influences Demon's Souls, Dark Souls, Brogue, DoomRL
Name: 398, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%27s%20Souls%22%20AND%20C.A.%20Sinclair%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=26781.0 ...'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=26781.40 ...'
Name Rogue's Tale
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rogue.epixx.org/
Status stable
Released 2012/12/31
Updated 2014/01/12
Developer Niilo Langinkoski
Theme Fantasy
Influences Rogue, Western RPGs
Name: 399, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%27s%20Tale%22%20AND%20Niilo%20Langinkoski%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name RogueBox Adventures
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://rogueboxadventures.tuxfamily.org/
Status alpha
Released 2015/11/30
Updated 2017/12/30
Developer themightyglider
Theme Fantasy
Influences NetHack, ADOM, Minecraft, Terraria
Name: 400, dtype: object
http://duckduckgo.com/html/?q=%22RogueBox%20Adventures%22%20AND%20themightyglider%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://themightyglider.itch.io/roguebox-adventures ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rogueboxadventures.tuxfamily.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/themightyglider/RogueBox-Adventures ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lgdb.org/game/roguebox-adventures ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/roguebox-adventures ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/RogueBoxAdventures2.1.2 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.freegamedev.net/viewtopic.php?p=67826 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libregamewiki.org/RogueBox%20Adventures ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4824.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4824.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4824.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://opengameart.org/content/platformer-game-music-pack ...'
b' |MSG| Scraping https://boards.dingoonity.org/gcw-development/roguebox-adventures-(preview-roguelikesandbox-game)/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://happypenguin.altervista.org/gameshow.php?t=RogueBox+Adventures ...'
b' |MSG| Found article'
b' |MSG| Scraping https://libraries.io/github/themightyglider/RogueBox-Adventures ...'
b'!!FAIL!! Failed to load https://libraries.io/github/themightyglider/RogueBox-Adventures'
HTTPSConnectionPool(host='libraries.io', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping https://repology.org/metapackage/roguebox-adventures/history ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gitgud.io/themightyglider/RogueBoxAdventures/commit/029a7dba70d4a004e734b7017ee15ae714a8039d ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tuxjam.otherside.network/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://roguelikefr.forumactif.org/t39-le-roguelike-bundle ...'
b' |MSG| Found article'
b' |MSG| Scraping https://onionlandsearchengine.com/search?q=adventure ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.bitchute.com/video/6Vutq4hb8i6e/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://pump.goblinrefuge.com/u/themightyglider/m/tutorial-how-to-run-roguebox-adventures-on-a-gnu-linux-system/ ...'
b' |MSG| Scraping https://www.vidlii.com/watch?v=986Erx4WSCU ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamemaking.social/@themightyglider/100142660152650826 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://reddittt.com/r/opensourcegames ...'
b' |MSG| Found article'
b' |MSG| Scraping https://raddle.me/w/foss_games ...'
b' |MSG| Found article'
Name RogueLite
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.citadel-studios.com/
Status beta
Released 2008/05/04
Updated 2008/07/05
Developer Citadel Studios
Theme Fantasy
Influences Nethack
Name: 401, dtype: object
http://duckduckgo.com/html/?q=%22RogueLite%22%20AND%20Citadel%20Studios%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://gaming.stackexchange.com/q/246887 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelites/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/241600/discussions/0/846959998064991774/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moregameslike.com/best-roguelite-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=1tN0LM7thY0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://slclip.com/rev/gdc+postmortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://childrenofmorta.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://pollywog.games/rgdb/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.slant.co/topics/6437/~rogue-lite-games-on-steam ...'
b' |MSG| Scraping https://www.rockpapershotgun.com/tag/roguelite/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itch.io/games/tag-roguelite ...'
b' |MSG| Scraping https://vnclip.net/rev/roguelite/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.yoyogames.com/index.php?tags/roguelite-2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://opengameart.org/content/roguelite ...'
b'!!FAIL!! Failed to load https://opengameart.org/content/roguelite'
HTTPSConnectionPool(host='opengameart.org', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://www.livingroguelike.com/roguelike-info-discussions/roguelike-vs-roguelite-whats-the-difference/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rpgcodex.net/forums/index.php?threads/defenders-of-naxia-a-deep-story-driven-roguelite-arpg.109416/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hardcoregamer.com/2013/07/06/what-separates-a-roguelike-from-a-roguelite/47151/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.deviantart.com/tag/roguelite ...'
b' |MSG| Found article'
b' |MSG| Scraping https://underzonegame.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmogames.com/gamenews/survived-by-retro-style-roguelite-bullet-hell-mmo/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://hotchpotch.games/page/2 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://8ch.net/roguelite/index.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://hddgames.com/page/3/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quora.com/Is-Java-used-for-making-indie-roguelike-and-roguelite-games?share=1 ...'
b' |MSG| Found article'
Name RogueMek
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://minimek.sourceforge.net/
Status alpha
Released 2013/00/00
Updated 2014/04/00
Developer Eric Harbeston
Theme science fiction
Influences BattleTech, Sword of the Stars: The Pit
Name: 402, dtype: object
http://duckduckgo.com/html/?q=%22RogueMek%22%20AND%20Eric%20Harbeston%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.reddit.com/r/gaming/comments/4mu5we/in_your_opinion_what_is_the_best_online_browser/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/harbdog/roguemek/wiki ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nogutsnogalaxy.net/forum/index.php?topic=3226.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mwomercs.com/forums/topic/130153-roguemek-the-battletech-inspired-roguelike/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=kBX4P85o3Lo ...'
b' |MSG| Scraping https://food-health-365.com/video/kBX4P85o3Lo/RogueMek-beta-1-release/ ...'
b' |MSG| Scraping http://www.sarna.net/forums/showflat.php/Cat/0/Number/174135/Main/167657 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://harbdog.github.io/roguemek/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.easycounter.com/report/battlemaster-roguemek.rhcloud.com ...'
b' |MSG| Found article'
b' |MSG| Scraping http://download-5.com/en/downloads/48155 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://organic-byway-174821.appspot.com/?q=raufozlemek ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.the-sos.com/clave/battletech+rogue+tech/ ...'
b' |MSG| Found article'
Name RogueTower8DRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://home.arcor.de/dungeonhunter/RogueTower.rar
Status alpha
Released 2006/02/26
Updated 2006/3/7
Developer Christopher Brandt
Theme Fantasy
Influences My upcoming RL DungeonHunter
Name: 403, dtype: object
http://duckduckgo.com/html/?q=%22RogueTower8DRL%22%20AND%20Christopher%20Brandt%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://rec.games.roguelike.announce.narkive.com/tMRr4bsm/announce-roguetower8drl ...'
b' |MSG| Found article'
Name RogueWatch
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.zincland.com/roguewatch
Status alpha
Released 2011/00/00
Updated 2011/00/00
Developer Jeff Lait
Theme hack & slash
Influences Rogue
Name: 404, dtype: object
http://duckduckgo.com/html/?q=%22RogueWatch%22%20AND%20Jeff%20Lait%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rogue '83
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sourceforge.net/projects/rogue83/
Status beta
Released 2008/11/02
Updated 2008/11/02
Developer NaN
Theme NaN
Influences Rogue
Name: 405, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20%2783%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rogue Clone
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rogueclone.sourceforge.net/
Status major
Released 1986/00/00
Updated 2007/00/00
Developer Tim Stoehr, many others
Theme Fantasy
Influences Rogue
Name: 406, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20Clone%22%20AND%20Tim%20Stoehr%20OR%20%20many%20others%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://gamia.gamepedia.com/Rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikedevelopment.org/archive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://britzl.github.io/roguearchive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/the_rogue_clone/status/915243225572667392 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.kotaku.co.uk/2018/08/31/dead-cells-on-switch-is-the-game-you-tell-your-other-games-not-to-worry-about ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/view/feature/132404/the_history_of_rogue_have__you_.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.smoothradio.com/features/faith-hill-songs-husband-children-facts/ ...'
b' |MSG| Scraping https://umoria.org/history/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/sma/pyrogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/the-complete-history-of-rpgs/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dosgamesarchive.com/download/rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gaming.wikia.com/wiki/Rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.graphicaudio.net/the-stormlight-archive-3-oathbringer-1-of-6.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://devhub.io/repos/sma-pyrogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://litrpgreads.com/blog/history-roguelikes ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefullwiki.org/Rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/68575.The_Clone_Republic ...'
b' |MSG| Found article'
b' |MSG| Scraping https://me.me/i/when-the-great-khan-of-the-steppes-is-informed-by-2138056 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kat.ag/ga-rogue-clone-02-rogue-clone-vong-t2297949.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=PgzNDr6o57k ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.alibaba.com/showroom/rogue-clone-mod.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamedev.net/forums/topic/299690-rogue-clone/ ...'
b' |MSG| Scraping https://rogue-clone-iv.soft112.com/ ...'
b' |MSG| Found article'
Name Rogue Effect
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dowhilecompiling.blogspot.com/p/rogue-e...
Status unknown
Released 2013/11/07
Updated 2017/009/25
Developer Tanthie
Theme scifi
Influences Mass Effect 3
Name: 407, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20Effect%22%20AND%20Tanthie%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://dowhilecompiling.blogspot.com/2017/09/rogue-effect-v10-and-drakefire-chasm.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rappler.com/thought-leaders/210821-duterte-visit-israel-rogue-state ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=3926.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=3926.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=3926.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.hearthpwn.com/decks/1178091-top-300-complete-odd-rogue-guide ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forums.te4.org/viewtopic.php?p=172093 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hearthpwn.com/decks/1178091-300-legend-complete-odd-rogue-guide ...'
b' |MSG| Found article'
b' |MSG| Scraping https://artofconquest.gamepedia.com/Temple ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hearthpwn.com/forums/hearthstone-general/fan-creations/105463-ancient-lockbox-of-rogue-card-ideas ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.belloflostsouls.net/2018/09/40k-rogue-trader-coming-up-kill-team-next-week.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmorpg.com/columns/shadows-awakening-review-fantastic-and-flawed-1000012985 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/roguelikes/comments/5h1wqr/wheres_the_ambitious_scifi_roguelike/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bikerumor.com/2018/08/30/first-rides-and-review-fox-live-valve-is-a-true-game-changer/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://toucharcade.com/2018/08/31/arena-of-valor-news-aov-prime-details-cybercore-wukong-and-amily/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.fantasygrounds.com/forums/showthread.php?17143-Effects-and-Modifiers ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/news/2018/09/guide_upcoming_nintendo_switch_games_and_accessories_for_september_and_october ...'
b' |MSG| Found article'
b' |MSG| Scraping http://scholarcommons.usf.edu/cgi/viewcontent.cgi?article=6387&context=etd ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nexusmods.com/twopointhospital/news/13105 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/author/show/17135924.Kevin_J_O_Brien ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=-MvvOHFVPV0 ...'
b' |MSG| Scraping https://www.beeradvocate.com/community/threads/the-rogue-effect.429165/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/tanthieactual ...'
b' |MSG| Scraping http://www.escapistmagazine.com/forums/read/540.858445-Rogue-Effect ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.roguedynamics.com/collections/patches ...'
b' |MSG| Found article'
Name Rogue Empire
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://roguempire.com/
Status alpha
Released 2016/04/01
Updated 2017/12/05
Developer German Wachnitz
Theme Fantasy
Influences ToME, ADOM, TCG's
Name: 408, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20Empire%22%20AND%20German%20Wachnitz%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.roguempire.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://medium.com/@gamelyst/interview-with-german-wachnitz-creator-of-the-amazing-indie-game-rogue-empire-154b847bad4d ...'
b' |MSG| Scraping https://www.moddb.com/news/forwarding-a-cool-interview-about-rogue-empire ...'
b' |MSG| Scraping https://portal-entertainment.itch.io/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/MovieDetails/comments/9cczm5/in_captain_america_the_first_avenger_the_german/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dw.com/en/german-police-officers-suspended-over-alleged-nazi-salute/a-45327997 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.patreon.com/roguempire ...'
b' |MSG| Scraping https://store.steampowered.com/video/650940/256702996?snr=1_7_7_230_150_55 ...'
b' |MSG| Scraping https://steamcommunity.com/app/650940/discussions/0/2949168687318261090/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thunderclap.it/da/projects/66507-rogue-empire-roguelike-rpg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/rogue-empire/presskit ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/roguempirerpg/posts ...'
b' |MSG| Scraping https://connect.unity.com/p/rogue-empire-in-early-access ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/rogue-empire/forums/my-thoughts-on-rogue-empire-33425446/ ...'
b' |MSG| Scraping http://washingtonsblog.com/2016/05/57751.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.linkedin.com/company/rogue-empire ...'
b' |MSG| Scraping https://www.exilian.co.uk/forum/index.php?topic=5486.0 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://roguempire.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.50gameslike.com/games-like/rogue-empire-dungeon-crawler-rpg ...'
b' |MSG| Found article'
b' |MSG| Scraping http://manybooks.net/ebooks/rogue-empire ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/roguempirerpg ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rogue-empire.obsidianportal.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sullygnome.com/game/Rogue_Empire ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamspy.com/app/650940 ...'
b' |MSG| Found article'
Name Rogue Fable II
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status stable
Released 2017/03/00
Updated 2017/03/25
Developer Justin Wang
Theme Fantasy
Influences DCSS]
Name: 409, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20Fable%20II%22%20AND%20Justin%20Wang%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.newgrounds.com/portal/view/690180 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kongregate.com/games/justin_wang123/rogue-fable-ii ...'
b' |MSG| Found article'
b' |MSG| Scraping https://justin-wang123.itch.io/rogue-fable-ii ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.html5gamedevs.com/topic/28736-wip-rogue-fable-ii/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=5287.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=5287.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=5287.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://phaser.io/news/2017/12/rogue-fable-ii ...'
b' |MSG| Scraping http://www.swfgames.in/game/rogue-fable-ii ...'
b'!!FAIL!! Failed to load http://www.swfgames.in/game/rogue-fable-ii'
HTTPConnectionPool(host='www.swfgames.in', port=80): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://www.funnygames.in/game/rogue_fable_ii.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.joy.land/rogue-fable-ii.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hackedarcadegames.com/game/22337/Rogue-Fable-II.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesradar.com/fable-ii-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamezhero.com/games/roguefable2 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.freeworldgroup.com/g/i/rogue-fable-ii.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://usclip.net/rev/fable+2+let/ ...'
b' |MSG| Scraping https://frclip.com/rev/rogue+like+games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://keygames.com/rogue-fable-ii-game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=lidzFO7HtXs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://grclip.com/rev/roguelike/ ...'
b' |MSG| Scraping http://rogue-fable.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://chclip.net/rev/free+roguelike+games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://games.co.za/rogue_fable_ii.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://brclip.com/rev/rogue+like/ ...'
b' |MSG| Scraping https://slclip.com/rev/best+roguelike+games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamekb.com/games/3476633-rogue-fable-ii ...'
b' |MSG| Found article'
Name The Night The Rogue-Maid Went Down
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sites.google.com/site/corremn/
Status alpha
Released 2007/03/18
Updated 2010/09/16
Developer Corremn
Theme Soldier combat
Influences Lovecraft
Name: 410, dtype: object
http://duckduckgo.com/html/?q=%22The%20Night%20The%20Rogue-Maid%20Went%20Down%22%20AND%20Corremn%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://sites.google.com/site/corremn/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thelocal.de/20180831/please-stop-calling-east-germans-racists-sit-down-and-listen-to-them ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rappler.com/world/regions/us-canada/210869-us-canada-nafta-talks-august-31-2018 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=1657.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=1657.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=1657.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://users.adam.com.au/savre/ ...'
b' |MSG| Found article'
Name Rogue Mud
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status beta
Released 2012/004/10
Updated 2012/004/16
Developer NaN
Theme Fantasy, hack and slash
Influences MAngband, TomeNET
Name: 411, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20Mud%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rogue Planets
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://drive.google.com/open?id=0B1VapDGffCdP...
Status stable
Released 2009/00/00
Updated 2009/08/18
Developer Rya Reisender
Theme Science fiction
Influences Phantasy Star II
Name: 412, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20Planets%22%20AND%20Rya%20Reisender%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rogue Survivor
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguesurvivor.blogspot.com/
Status alpha
Released 2010/05/03
Updated 2018/08/19
Developer roguedjack
Theme Zombies, Survival
Influences NaN
Name: 413, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20Survivor%22%20AND%20roguedjack%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rogue Touch
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.chronosoft.com/roguetouch.html
Status stable
Released 2009/2/19
Updated 2010/7/9
Developer ChronoSoft
Theme NaN
Influences Rogue
Name: 414, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20Touch%22%20AND%20ChronoSoft%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Roguelike Game Maker
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.roguelike-game-maker.co.uk/
Status alpha
Released 2010/05/30
Updated 2011/06/09
Developer Marcel Woods
Theme Variable
Influences Rogue, ZZT
Name: 415, dtype: object
http://duckduckgo.com/html/?q=%22Roguelike%20Game%20Maker%22%20AND%20Marcel%20Woods%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Roguelike Library for Java
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rlforj.sourceforge.net/
Status beta
Released 2007/12/15
Updated 2007/12/15
Developer datta_sid
Theme SciFi/Fantasy/Anything you can imagine
Influences Roguelikes
Name: 416, dtype: object
http://duckduckgo.com/html/?q=%22Roguelike%20Library%20for%20Java%22%20AND%20datta_sid%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Roguelike Library for Perl
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rll-pm.sourceforge.net/
Status beta
Released 1000/00/00
Updated 2008/12/29
Developer erik aronesty
Theme Any
Influences Crawl
Name: 417, dtype: object
http://duckduckgo.com/html/?q=%22Roguelike%20Library%20for%20Perl%22%20AND%20erik%20aronesty%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Roguelike Mobile
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status beta
Released 2009/00/00
Updated 1000/00/00
Developer Bas_Ameschot
Theme Fantasy
Influences Rogue
Name: 418, dtype: object
http://duckduckgo.com/html/?q=%22Roguelike%20Mobile%22%20AND%20Bas_Ameschot%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Roguelike Runner
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.placatethecattin.com/
Status beta
Released 2013/01/17
Updated 2013/02/05
Developer Placate The Cattin
Theme Fantasy
Influences NetHack, Butch Cassidy and the Sundance Kid
Name: 419, dtype: object
http://duckduckgo.com/html/?q=%22Roguelike%20Runner%22%20AND%20Placate%20The%20Cattin%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Roguelike Me
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status alpha
Released 2014/04/02
Updated 2015/04/10
Developer A Donut with Sprinklez
Theme Medieval, Fantasy
Influences NetHack
Name: 420, dtype: object
http://duckduckgo.com/html/?q=%22Roguelike%20Me%22%20AND%20A%20Donut%20with%20Sprinklez%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Roguemare
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://lotuskip.github.io/
Status stable
Released 2017/10/02
Updated 2018/08/07
Developer lotuskip
Theme Other
Influences Adom, Alphaman
Name: 421, dtype: object
http://duckduckgo.com/html/?q=%22Roguemare%22%20AND%20lotuskip%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Roguestar
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguestar.downstairspeople.org/
Status beta
Released 2008/05/09
Updated 2010/07/11
Developer Christopher Lane Hinson
Theme Sci-Fi
Influences Nethack, Slash'Em, Starflight (Electronic Arts)
Name: 422, dtype: object
http://duckduckgo.com/html/?q=%22Roguestar%22%20AND%20Christopher%20Lane%20Hinson%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name roguezombies
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/roguezombies/
Status stable
Released 2011/10/12
Updated 2011/10/12
Developer Ondras
Theme Classic
Influences NaN
Name: 423, dtype: object
http://duckduckgo.com/html/?q=%22roguezombies%22%20AND%20Ondras%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rot Magus
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://gamejolt.com/games/rpg/rot-magus/41491/
Status alpha
Released 2015/01/05
Updated 2015/1/5
Developer Kosina Zoltan
Theme Fantasy
Influences Magus
Name: 424, dtype: object
http://duckduckgo.com/html/?q=%22Rot%20Magus%22%20AND%20Kosina%20Zoltan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rotten Soup
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/Larkenx/Rotten-Soup
Status alpha
Released 2017/07/09
Updated 2017/11/17
Developer Steven Myers
Theme Fantasy
Influences Dungeon Crawl Stone Soup
Name: 425, dtype: object
http://duckduckgo.com/html/?q=%22Rotten%20Soup%22%20AND%20Steven%20Myers%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Rouge
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguelikeeducation.org/3.html
Status stable
Released 2014/01/05
Updated 2014/01/05
Developer Tectorum
Theme Historical
Influences CoreRL
Name: 426, dtype: object
http://duckduckgo.com/html/?q=%22Rouge%22%20AND%20Tectorum%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Run from the Shadow
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gamesofgrey.com/blog/
Status beta
Released 2011/09/18
Updated 2011/9/18
Developer Darren Grey
Theme Guilt, Escapism
Influences Broken Bottle, Shadow of the Colossus
Name: 427, dtype: object
http://duckduckgo.com/html/?q=%22Run%20from%20the%20Shadow%22%20AND%20Darren%20Grey%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Ruoeg, a minimalist roguelike
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/SanchezSobrino/Ruoeg
Status stable
Released 2013/05/03
Updated 2013/05/03
Developer Santiago Sanchez Sobrino
Theme Fantasy
Influences Legend of Grimrock, The Legend of Zelda
Name: 428, dtype: object
http://duckduckgo.com/html/?q=%22Ruoeg%2C%20a%20minimalist%20roguelike%22%20AND%20Santiago%20Sanchez%20Sobrino%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Name S.C.O.U.R.G.E.
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://scourgeweb.org/
Status stable
Released 2004/03/14
Updated 2008/12/23
Developer NaN
Theme NaN
Influences Nethack, Moria
Name: 429, dtype: object
http://duckduckgo.com/html/?q=%22S.C.O.U.R.G.E.%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=aKVSQ0BhCQ8 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://zenway.ru/page/scourge ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=HwFesuI3ZHo ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=gob_TCYjhYU ...'
b' |MSG| Scraping https://www.rte.ie/sport/gaa/2018/0902/991167-r-e-s-p-e-c-t-for-what-the-dubs-have-achieved/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://scourge.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.linux.org.ru/news/games/2730442 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forum.schoolofdragons.com/content/what-are-all-these-random-streaming-things-below ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.instagram.com/p/Bm3ouIsBlZk/?hl=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://azzai.deviantart.com/art/s-c-o-u-r-g-e-372998254 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/mrstealyourman ...'
b' |MSG| Found article'
b' |MSG| Scraping https://github.com/q4a/scourge ...'
b' |MSG| Found article'
b' |MSG| Scraping https://doc.ubuntu-fr.org/scourge ...'
b' |MSG| Scraping https://ualinux.com/ru/ubuntu-games-action/scourge ...'
b' |MSG| Scraping https://www.old-games.ru/forum/threads/besplatnye-igry-s-otkrytym-isxodnym-kodom.60598/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mirsofta.ru/soft/SCOURGE.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://SoftoRoom.net/topic44409.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://flagellumregem.tumblr.com/ ...'
b' |MSG| Scraping http://www.downloads-hub.com/downloads/s-c-o-u-r-g-e-heroes-of-lesser-renown ...'
b' |MSG| Found article'
Name S.C.O.U.R.G.E. 2
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://scourgeweb.org/
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer NaN
Theme NaN
Influences Nethack, Moria
Name: 430, dtype: object
http://duckduckgo.com/html/?q=%22S.C.O.U.R.G.E.%202%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=HwFesuI3ZHo ...'
b' |MSG| Found article'
b' |MSG| Scraping http://xlxx.video/watch/video33557697/y-o-u-n-g-m-o-t-h-e-r-i-n-l-a-w ...'
b' |MSG| Scraping https://linux.softpedia.com/get/GAMES-ENTERTAINMENT/Puzzle/S-C-O-U-R-G-E-606.shtml ...'
b' |MSG| Found article'
Name SCP Containment Breach Horrors
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://atygeek.com/scp-containment-breach-horr...
Status beta
Released 2018/00/00
Updated 2018/00/00
Developer Atygeek
Theme Horror
Influences The SCP Foundation universe
Name: 431, dtype: object
http://duckduckgo.com/html/?q=%22SCP%20Containment%20Breach%20Horrors%22%20AND%20Atygeek%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://itch.io/t/266564/scp-containment-breach-horrors ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/scp-containment-breach-horrors ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/SCPhorrors/357497 ...'
b' |MSG| Scraping https://steamcommunity.com/app/347400/discussions/0/1759104780475861635/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=IwEUkp4SVu4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kickstarter.com/projects/947437480/scp-containment-breach-horrors-roguelike-survival ...'
b' |MSG| Found article'
b' |MSG| Scraping https://screenrant.com/into-the-breach-switch-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://atygeek.com/scp-containment-breach-horrors/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.afjv.com/forums/sujet/8-469-1-scp-containment-breach-horrors-horror-roguelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=gdkIi6qVNIs ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamemux.com/games/29130/scp-containment-breach-horrors.html ...'
b' |MSG| Scraping https://www.indiemag.fr/news/reductions-fin-aout-2018-gog ...'
b' |MSG| Scraping http://crowdfundingrss.com/view/scp-containment-breach-horrors-roguelike-survival-horror ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thecrowdfundingcenter.com/mobile/load_more.php?page=473&projects=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://videof.online/videofun1/bKHW_LyxFOc/walkthrough-of-scp-containment-breach-horrors-demo ...'
b' |MSG| Found article'
b' |MSG| Scraping http://showclipaz.com/br/SCP-%D0%BF%D1%80%D0%BE%D1%85%D0%BE%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D0%B5 ...'
b' |MSG| Scraping https://vuivui.info/video/beb8S-Yk1g4/new-scp-rooms-items-more-update-1310-scp-containment-breach-243 ...'
b' |MSG| Found article'
Name SECTOR 2F
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://devilbuddy.itch.io/sector-2f
Status stable
Released 2016/01/15
Updated 2016/01/17
Developer Devilbuddy
Theme Sci-fi
Influences NaN
Name: 432, dtype: object
http://duckduckgo.com/html/?q=%22SECTOR%202F%22%20AND%20Devilbuddy%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://itch.io/e/178288/devilbuddy-updated-sector-2f ...'
b' |MSG| Found article'
b' |MSG| Scraping https://devilbuddy.itch.io/sector-2f ...'
b' |MSG| Found article'
b' |MSG| Scraping http://apkbog.com/en/apk/sector-2f/1.5 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://guardian.ng/opinion/du-du-du-mi-do-mi-taxing-the-informal-sector-in-my-city-part-1/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sameapk.com/sector-2f/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/sector-six/news/sector-six-version-099-is-now-available-play-now ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.barrons.com/articles/a-market-shakeup-is-pushing-alphabet-and-facebook-out-of-the-tech-sector-1535762710?link=mktw ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.dg.ssrl.android&hl=ru ...'
b' |MSG| Found article'
b' |MSG| Scraping https://fortniteintel.com/2018/08/31/battle-royale-developer-update-8-31-storm-destruction-vaulting-the-revolver-and-item-updates/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkplz.com/android-games/sector-2f ...'
b' |MSG| Found article'
b' |MSG| Scraping https://iorj.hse.ru/data/2018/08/30/1154590378/Bhattacharya%20Kharas%20Plant%20Prizzon.pdf ...'
b' |MSG| Scraping https://www.afr.com/news/policy/education/university-mergers-maximise-and-multiply-the-value-for-students-and-communities-20180901-h14tsk ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkpure.co/sector-2f/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.zimbabwesituation.com/news/insurance-sector-change-of-mindset-a-must-to-stay-afloat/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=fjy-2D0L8G8 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://timesofindia.indiatimes.com/city/noida/sector-18-dug-up-slow-repair-work-angers-all/articleshow/65630243.cms ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ag.ru/games/f-29-retaliator/cheats/476 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamer.com/games-troll-players-hacking-ban/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.apkgplay.com/tr/sector-2f ...'
b' |MSG| Found article'
b' |MSG| Scraping http://artonelico.wikia.com/wiki/Tower_Inside_A2_Sector_91F_and_Floating_Wharf ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.dg.ssrl.android&hl=en ...'
b' |MSG| Found article'
b' |MSG| Scraping http://choilieng.com/apk-on-pc/com.dg.ssrl.android.apk ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.apkgplay.com/ru/sector-2f ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=K4xXQp1PyIQ ...'
b' |MSG| Found article'
Name SLASH'EM
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://slashem.sourceforge.net/
Status stable
Released 2006/12/30
Updated 2006/12/30
Developer The SLASH'EM DevTeam
Theme fantasy
Influences NetHack,SLASH
Name: 433, dtype: object
http://duckduckgo.com/html/?q=%22SLASH%27EM%22%20AND%20The%20SLASH%27EM%20DevTeam%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.slashem.org/ ...'
b' |MSG| Found article'
b" |MSG| Scraping https://nethackwiki.com/wiki/Slash'EM_Extended ..."
b' |MSG| Found article'
b' |MSG| Scraping http://nethack.wikia.com/wiki/Standard_Strategy_-_SLASH%27EM ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.slashem.org/archive/index.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sourceforge.net/p/slashem/mailman/slashem-checkins/thread/E18wrtH-0008Nt-00@sc8-pr-cvs1.sourceforge.net/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/nethack/comments/4cmgg7/first_slashem_extended_ascension_ever/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sourceforge.net/p/slashem/mailman/slashem-checkins/?viewmonth=200303 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/nethack/comments/7vdmg8/a_survey_about_slashem_extended/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamesetwatch.com/2008/03/play_nethack_intensified.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/se008e0f1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nethack.wikia.com/wiki/Pudding_farming ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gaming.stackexchange.com/tags/nethack/info ...'
b' |MSG| Found article'
b' |MSG| Scraping https://h2g2.com/edited_entry/A2266805 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mud.wikia.com/wiki/NetHack ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nethackwiki.com/wiki/Variant ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tvtropes.org/pmwiki/pmwiki.php/YMMV/Nethack ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thefullwiki.org/NetHack ...'
b' |MSG| Scraping https://everipedia.org/wiki/NetHack/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://muds.wikia.com/wiki/NetHack ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguelikeradio.com/2013/12/episode-84-nethack.html ...'
b' |MSG| Scraping https://www.revolvy.com/main/index.php?s=NetHack ...'
b' |MSG| Found article'
Name SRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://saufnix.dynalias.org/downloads/srogue/i...
Status stable
Released 2010/00/00
Updated 2010/00/00
Developer Thomas_Strasser
Theme Fantasy
Influences Rogue,Ultima
Name: 434, dtype: object
http://duckduckgo.com/html/?q=%22SRogue%22%20AND%20Thomas_Strasser%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://RuTracker.org/forum/viewtopic.php?t=5342538 ...'
b' |MSG| Scraping http://www.roguelikedevelopment.org/archive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://britzl.github.io/roguearchive/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://torrents24.ru/viewtopic.php?p=40078 ...'
b' |MSG| Scraping http://www.doshaven.eu/game/srogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/28srogue/status/1032000679051714565 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=4e45EUOkgu4 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.chesder.com/rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hearthpwn.com/decks/1086852-witchwood-weaponsrogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.kaspersky.com/index.php?/profile/190308-srogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.cs.cmu.edu/~mmv/papers/aips98-rogue.pdf ...'
b' |MSG| Scraping https://github.com/RoguelikeRestorationProject/srogue/blob/master/rdk.h ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nickfinder.com/srogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tinyheroesandvillains.tumblr.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.warcraftmovies.com/movieview.php?id=248517 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://temp.arena-tournament.com/forum/viewtopic.php?p=97941 ...'
b' |MSG| Scraping https://archive.org/details/RoguelikeMegaCollection2015 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://afkgamer.com/about/history/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.downduck.com/software/2620158-srogue-amoeba-audio-apps-pack-v20161-mac-osx.html ...'
b' |MSG| Scraping http://minidl.org/srogue-amoeba-audio-apps-pack-v2016-1-mac-osx/ ...'
b' |MSG| Scraping https://www.britmodeller.com/forums/index.php?/profile/13337-srogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.scribd.com/document/267263570/Feral-Guide-at-Badgerzz-Complete-Version ...'
b' |MSG| Found article'
b' |MSG| Scraping https://devhub.io/repos/ajpaulson-srogue11 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefaqs.gamespot.com/pc/188666-neverwinter-nights/faqs/22932 ...'
Name Saege
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status alpha
Released 2012/00/00
Updated 2012/00/00
Developer Knight
Theme High Fantasy
Influences Angband, ADOM
Name: 435, dtype: object
http://duckduckgo.com/html/?q=%22Saege%22%20AND%20Knight%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://saegeconsultants.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://xivdb.com/item/15535 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.joyofbaby.com/meaning/name/Saege ...'
b' |MSG| Scraping http://www.babynology.com/name/saege-m.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.tripadvisor.com/Attraction_Review-g1171610-d4080858-Reviews-Stoffels_Saege_Muhle-Hohenems_Vorarlberg_Austrian_Alps.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.verbformen.com/declension/nouns/Sa3ge.htm ...'
b' |MSG| Scraping https://www.definitions.net/definition/S%C3%A4GE ...'
b' |MSG| Scraping https://reactorr.org/viewtopic.php?t=59108 ...'
b' |MSG| Scraping https://www.saebelsaegen.net/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.fanfreegames.com/games/saw ...'
b' |MSG| Found article'
b' |MSG| Scraping https://saege4.de/info/ ...'
b' |MSG| Scraping https://the64thwonder.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://saege.ch/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rotesaege.at/ ...'
b' |MSG| Scraping https://en.wiktionary.org/wiki/S%C3%A4ge ...'
b' |MSG| Found article'
b' |MSG| Scraping https://genius.com/The64thWonder ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.saege24.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kpopsaege.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://the64thwonder.bandcamp.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ru.linkedin.com/company/saege-consultants ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=vl51h1EmhH0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/the64thwonder/?fref=mentions ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.adobe.com/thread/1823872 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://saebel-saege.de/ ...'
b' |MSG| Found article'
Name Sagittarius
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://www.swordstar.ca/sagittarius
Status beta
Released 2015/05/18
Updated 2015/08/30
Developer Swordstar
Theme Fantasy
Influences NetHack
Name: 436, dtype: object
http://duckduckgo.com/html/?q=%22Sagittarius%22%20AND%20Swordstar%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.astrology-zodiac-signs.com/compatibility/leo-sagittarius/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.astroreveal.com/Which-Star-Signs-Should-You-Date.aspx?a=SAG ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sagittarius.com/sagittarius-and-taurus.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thoughtco.com/win-the-sagittarius-man-206420 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sagittarius.com/sagittarius-and-capricorn.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.abouthoroscope.com/sagittarius-traits/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gods-and-monsters.com/sagittarius-myth.html ...'
b' |MSG| Scraping https://www.astromatcha.com/astrology-compatibility/sagittarius-compatibility/sagittarius-and-virgo-compatibility/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://zodiacfire.com/sagittarius-personality/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.astromatcha.com/astrology-compatibility/sagittarius-compatibility/sagittarius-and-sagittarius-compatibility/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gbf.wiki/Sagittarius ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.constellation-guide.com/constellation-list/sagittarius-constellation/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://deck-heroes.wikia.com/wiki/Sagittarius ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.compatible-astrology.com/sagittarius-compatibility.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.compatible-astrology.com/sagittarius-sagittarius.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://code-greenhawk.tumblr.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ac-sagittarius.at/ ...'
b' |MSG| Scraping http://www.sagittarius.ee/ ...'
b' |MSG| Scraping https://www.izodiacsigns.com/sagittarius/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.iloveindia.com/astrology/compatibility/sagittarius/sagittarius-aquarius.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sagittarius.cz/ ...'
b' |MSG| Scraping https://www.keen.com/articles/tarot/6-of-swords-tarot-card ...'
b' |MSG| Found article'
b' |MSG| Scraping http://astrostyle.com/sagittarius-symbol/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.astrology.com/love/compatibility/sagittarius-taurus.html ...'
Name Sanctuary
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.regulark.com/
Status alpha
Released 2011/08/00
Updated 2011/09/23
Developer RegularK
Theme Fantasy
Influences NaN
Name: 437, dtype: object
http://duckduckgo.com/html/?q=%22Sanctuary%22%20AND%20RegularK%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://blog.hardcoregaming101.net/2014/04/post-mortem-deception-v-iv-blood.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://eversanctuary.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamefabrique.com/games/post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sanctuary18.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.alphabetagamer.com/mortem-alpha-demo/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/salt-and-sanctuary-review/1900-6416407/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=P7LdlWqjswQ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=72PU9Z7mARg ...'
b' |MSG| Scraping https://steamcommunity.com/app/283640/discussions/1/357286663686804611/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/game/salt-and-sanctuary/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gameslikefinder.com/salt-and-sanctuary/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://currumbinsanctuary.com.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://usanctuary.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.art-sanctuary.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.anewhopesanctuary.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/articles/2018/08/01/salt-and-sanctuary-review ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sanctuary23.com/ ...'
b' |MSG| Scraping http://www.sanctuaryhotel.com.au/ ...'
b' |MSG| Scraping https://brightside.me/wonder-curiosities/12-important-archaeological-discoveries-that-changed-history-284910/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.diabloii.net/blog/comments/diablo-3-post-mortem-with-jay-wilson-part-five ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/saltandsanctuary/comments/4bo1ut/end_game_story_quesion/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sanctuary.net/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://artsanctuary.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.games-sanctuary.ch/ ...'
b' |MSG| Found article'
Name SanctuaryRPG
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.playsrpg.com/
Status beta
Released 2012/12/00
Updated 2014/12/24
Developer Black Shell Games
Theme Medieval/Science Fiction
Influences Diablo, NetHack
Name: 438, dtype: object
http://duckduckgo.com/html/?q=%22SanctuaryRPG%22%20AND%20Black%20Shell%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://store.steampowered.com/app/328760/SanctuaryRPG_Black_Edition/ ...'
b' |MSG| Scraping https://www.reddit.com/r/gamedev/comments/3in1nm/we_are_black_shell_media_developers_of/ ...'
b' |MSG| Scraping https://www.hardcoregamer.com/2015/02/23/review-sanctuaryrpg-black-edition/135198/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://blackshellgames.itch.io/srpgretro ...'
b' |MSG| Found article'
b' |MSG| Scraping http://sanctuaryrpg.wikia.com/wiki/Story ...'
b' |MSG| Found article'
b' |MSG| Scraping https://artistryingames.com/sanctuaryrpg-interview-black-shell-games/ ...'
b'!!FAIL!! Failed to load https://artistryingames.com/sanctuaryrpg-interview-black-shell-games/'
HTTPSConnectionPool(host='artistryingames.com', port=443): Max retries exceeded with url: /sanctuaryrpg-interview-black-shell-games/ (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x1150a1c50>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known',))
b' |MSG| Scraping http://small-games.info/?go=game&c=10&i=15566 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=y5JY4i6F_9M ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamegrin.com/reviews/sanctuaryrpg-review/ ...'
b' |MSG| Scraping http://www.sanctuaryrpg.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/sanctuaryrpg-black-edition.html ...'
b' |MSG| Scraping https://www.qwant.com/game/sanctuaryrpg?l=pl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=231264151 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gameskinny.com/p8cya/a-chat-about-sanctuary-rpg-with-daniel-doan-of-black-shell-media ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/sanctuaryrpg/17581 ...'
b' |MSG| Scraping https://muut.com/i/cassus/rpg:review-sanctuaryrpg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sockscap64.com/games/game/sanctuaryrpg/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alchetron.com/SanctuaryRPG ...'
b' |MSG| Found article'
b' |MSG| Scraping http://en.wikibedia.ru/wiki/SanctuaryRPG ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/sanctuaryrpg-black-edition ...'
b' |MSG| Scraping https://gamesmojo.com/games/action/sanctuaryrpg-black-edition ...'
b' |MSG| Found article'
b' |MSG| Scraping http://warpdoor.com/2014/05/22/sanctuaryrpg-black-shell-games/ ...'
b' |MSG| Scraping https://sanctuaryrpg-black-edition.en.softonic.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamepciso.com/sanctuary-rpg-black-edition-download-free/ ...'
b' |MSG| Found article'
Name Sane Roguelike
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://mouseproducedgames.com/
Status alpha
Released 2009/07/19
Updated 2009/07/23
Developer Narf the Mouse
Theme Fantasy
Influences NaN
Name: 439, dtype: object
http://duckduckgo.com/html/?q=%22Sane%20Roguelike%22%20AND%20Narf%20the%20Mouse%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Santolkrad
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/lowquark/cavedoggorl
Status unknown
Released 1000/00/00
Updated 1000/00/00
Developer Lowquark
Theme fantasy
Influences Dwarf Fortress, Caves of Qud, Pagan Practices
Name: 440, dtype: object
http://duckduckgo.com/html/?q=%22Santolkrad%22%20AND%20Lowquark%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Satan's Thrift Store
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/RylandAlmanza/Satans-Thrift...
Status alpha
Released 2012/00/00
Updated 2012/00/00
Developer RylandAlmanza
Theme NaN
Influences Diablo, Angband
Name: 441, dtype: object
http://duckduckgo.com/html/?q=%22Satan%27s%20Thrift%20Store%22%20AND%20RylandAlmanza%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://github.com/RylandAlmanza/Satans-Thrift-Store ...'
b' |MSG| Found article'
Name Scantanador
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.adrianomarchetti.it/altro/scantanad...
Status unknown
Released 2015/02/01
Updated 2016/01/01
Developer Adriano
Theme Fantasy
Influences ToME, Angband
Name: 442, dtype: object
http://duckduckgo.com/html/?q=%22Scantanador%22%20AND%20Adriano%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.adrianomarchetti.it/altro/scantanador/scantanador.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/ArchiveRL.7z ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arkhammanor.com/rpgbase/RLdb.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://unbruttoforum.forumfree.it/?t=74727579&st=15 ...'
b' |MSG| Found article'
Name Seduction Quest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/hentaigamemaker/
Status alpha
Released 2012/10/18
Updated 2013/04/14
Developer Codex
Theme Erotic Fantasy
Influences Nethack, Dwarf Fortress, Monster Girl Quest
Name: 443, dtype: object
http://duckduckgo.com/html/?q=%22Seduction%20Quest%22%20AND%20Codex%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://velesk-games.wikia.com/wiki/Charlotte ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.manyeyedhydra.com/2013/03/some-monster-girl-roguelikes-in.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://xivdb.com/quest/66607/%E9%82%AA%E7%AB%9C%E3%81%AE%E5%A3%B0 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/shenmue-i-and-ii-update-v1-01-codex.html ...'
b' |MSG| Scraping https://sunsualseduction.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wowhead.com/quest=45126/unlikely-seduction ...'
b' |MSG| Found article'
b' |MSG| Scraping https://l2e-global.com/forum/threads/dangerous-seduction-quest.29133/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://comicvine.gamespot.com/profile/_quest_/about-me/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://l2classic.club/forum/topic/7342-dark-elf-quest-rewards/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://l2db.info/high-five/quests/170-Dangerous-Seduction ...'
b' |MSG| Scraping http://lineage.pmfun.com/list/starter-quests/dangerous-seduction ...'
b' |MSG| Scraping https://www.discogs.com/label/390866-Quest-3 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://topboook.com/225992-seduction-quest-seduction-4.html ...'
b' |MSG| Scraping https://torrentz2.eu/search?f=seduction%20quest+added%3A1d ...'
b'!!FAIL!! Failed to load https://torrentz2.eu/search?f=seduction%20quest+added%3A1d'
HTTPSConnectionPool(host='torrentz2.eu', port=443): Max retries exceeded with url: /search?f=seduction%20quest+added%3A1d (Caused by SSLError(CertificateError("hostname 'torrentz2.eu' doesn't match 'www.tvicb.com'",),))
b' |MSG| Scraping http://hongfire1.rssing.com/chan-8604322/all_p18.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freeflacmp3.com/electronic/2600973-seduction-quest-seduction-3-free-download.html ...'
b' |MSG| Scraping http://forum.dragon-community.net/index.php?topic=219479.0 ...'
b' |MSG| Scraping http://www.tuneid.com/drum-bass/95837-dj-seduction-quest-1994-jungle-ids.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.lineage2server.org/quest-Dangerous-Seduction-170 ...'
b' |MSG| Scraping https://alexvampire.wordpress.com/2016/01/24/roguelike-mega-collection-700-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/faqs/2011/xenoblade-chronicles-walkthrough-1194879 ...'
b' |MSG| Scraping http://www.play-downloads.com/7155148-quest-and-odissi-expedition-to-planet-zog-download-free.html ...'
b' |MSG| Scraping https://www.mixesdb.com/w/1994-01-15_-_Easygroove,_Ratty_%26_DJ_Seduction_@_Quest_-_Battle_Of_The_MC%27s_Round_1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mediafiretrend.com/f/123917/seduction_quest_battle_of_the_mcs_round_1_15th_january_1994_tape_4_side_b.html ...'
Name Serial Killer
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://bloodrizer.ru/skiller
Status alpha
Released 2010/02/00
Updated 2012/03/00
Developer bloodrizer
Theme Social simulation
Influences Serial Killer Hoax
Name: 444, dtype: object
http://duckduckgo.com/html/?q=%22Serial%20Killer%22%20AND%20bloodrizer%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.scoopwhoop.com/world/most-evil-serial-killers ...'
b' |MSG| Found article'
b' |MSG| Scraping https://TheyDiffer.com/difference-between-a-mass-murderer-and-a-serial-killer/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/The_Serial_Killer_Files_By_Harold_Schechter ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=12PXvKfWdZs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=syWtUykS7L0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/global/2017/jun/25/catching-a-serial-killer-stephen-fulcher-police ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.crimetraveller.org/2017/01/what-makes-a-serial-killer/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.bustle.com/p/15-terrifying-nonfiction-books-that-read-like-horror-10927341 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quora.com/What-is-the-difference-between-a-psychopath-serial-killer-and-a-soldier-who-enjoys-killing-and-torturing-his-enemy?share=1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thoughtco.com/serial-killers-4132966 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ranker.com/list/real-serial-killers-vs-the-actors-who-played-them-in-movies/jacob-shelton ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.newyorker.com/magazine/2017/11/27/the-serial-killer-detector ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.bustle.com/articles/115697-the-difference-between-mass-spree-and-serial-killers ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.vice.com/en_us/article/wndmq9/the-story-of-the-female-serial-killer-who-found-murder-moreish ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.digitalspy.com/movies/feature/a828733/serial-killer-movies/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.vulture.com/2017/10/mindhunter-netflix-real-serial-killers.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dailydot.com/upstream/serial-killer-movies-netflix/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.9news.com.au/serial-killer ...'
b' |MSG| Scraping http://dreamstop.com/serial-killer-dream-symbol/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.unbelievable-facts.com/2016/03/criminal-mind-studies.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.serialkillerscardgame.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.crimemuseum.org/crime-library/serial-killers/serials-killers-vs-mass-murderers/ ...'
b' |MSG| Scraping https://www.thesun.co.uk/news/3706089/most-notorious-female-serial-killers-in-history/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://variety.com/2016/tv/opinion/banshee-game-of-thrones-serial-killer-plot-1201779629/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://the-line-up.com/serial-killer-movies-real-murderers ...'
b' |MSG| Found article'
Name Settlement
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.alamak0ta.republika.pl/settlement.html
Status stable
Released 2009/02/00
Updated 2009/02/00
Developer Jakub Debski
Theme Hist./Fantasy
Influences NaN
Name: 445, dtype: object
http://duckduckgo.com/html/?q=%22Settlement%22%20AND%20Jakub%20Debski%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://rec.games.roguelike.misc.narkive.com/cE12m43a/settlement ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.theparanormalguide.com/blog/post-mortem-class-photo ...'
b' |MSG| Found article'
b' |MSG| Scraping https://theconversation.com/discovery-settlement-or-invasion-the-power-of-language-in-australias-historical-narrative-57097 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thesettlement.org.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.inquisitionspostmortem.ac.uk/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.parliament.nsw.gov.au/about/Pages/1788-to-1810-Early-European-Settlement.aspx ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sydneysettlements.com.au/ ...'
b' |MSG| Scraping https://www.alrc.gov.au/publications/3.%20Aboriginal%20Societies%3A%20The%20Experience%20of%20Contact/impacts-settlement-aboriginal-people ...'
b' |MSG| Found article'
b' |MSG| Scraping http://anomalyinfo.com/Stories/1924-post-mortem-class-picture ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jcrsettlements.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sahistory.org.za/article/dutch-settlement ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nexusmods.com/fallout4/mods/22818 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/generalhistoryof00defo ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.doc.govt.nz/chinese-settlement ...'
b' |MSG| Found article'
b' |MSG| Scraping https://huttonsettlement.org/ ...'
b'!!FAIL!! Failed to load https://huttonsettlement.org/'
HTTPSConnectionPool(host='huttonsettlement.org', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://settlementonquay.com.au/ ...'
b' |MSG| Scraping https://residentialsettlements.com.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.mudgeehistory.com.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.advantagesettlements.com.au/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://portarthur.org.au/history/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://soldiersettlement.prov.vic.gov.au/about/the-settlement-scheme/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.aboriginalheritage.org/history/history/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.brisbanehistory.com/convict_era.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://legalvision.com.au/what-is-a-deed-of-settlement/ ...'
b' |MSG| Found article'
Name Shadow of the Wyrm
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.shadowofthewyrm.org/
Status alpha
Released 2015/08/31
Updated 2018/01/20
Developer Julian Day (jcd748)
Theme Fantasy
Influences ADOM, Omega
Name: 446, dtype: object
http://duckduckgo.com/html/?q=%22Shadow%20of%20the%20Wyrm%22%20AND%20Julian%20Day%20%28jcd748%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.shadowofthewyrm.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://shadow-of-the-wyrm.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/jcd748/status/1031276752490774528 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4731.315 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4731.315'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4731.315 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://intheshadowofthewyrm.obsidianportal.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.oneangrygamer.net/2018/09/the-end-of-the-sun-slavic-mystery-adventure-game-set-to-launch-late-2019/68014/ ...'
b' |MSG| Scraping https://www.igdb.com/games/shadow-of-the-wyrm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespedition.com/pc-games/role-playing-games/shadow-of-the-wyrm/shadow-of-the-wyrm-secrets-and-easter-eggs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/jcd748/status/1026290250711281665 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/jcd748 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamejerks.net/games/shadow-of-the-wyrm ...'
b'!!FAIL!! Failed to load https://www.gamejerks.net/games/shadow-of-the-wyrm'
HTTPSConnectionPool(host='www.gamejerks.net', port=443): Max retries exceeded with url: /games/shadow-of-the-wyrm (Caused by SSLError(CertificateError("hostname 'www.gamejerks.net' doesn't match either of 'gamejerks.net', 'bayonfire.com', 'g2anime.net'",),))
Name Shambletown
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/shambletown/
Status alpha
Released 2011/1/4
Updated 2011/1/12
Developer Norman B. Lancaster
Theme Zombies, Post-Apocalyptic Future
Influences Fallout, Diablo, Wasteland
Name: 447, dtype: object
http://duckduckgo.com/html/?q=%22Shambletown%22%20AND%20Norman%20B.%20Lancaster%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Shepherd Slaughter
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://blindhack.com/
Status stable
Released 2011/10/00
Updated 2012/05/30
Developer Blindhack Software
Theme Fantasy, Adventure, Magic, Dangerous
Influences Nethack, Diablo, Rogue
Name: 448, dtype: object
http://duckduckgo.com/html/?q=%22Shepherd%20Slaughter%22%20AND%20Blindhack%20Software%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Shinobi
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://geeze.github.io/shinobi
Status alpha
Released 2014/00/00
Updated 1000/00/00
Developer Tapio Kemppainen (Metsä)
Theme Stealth, feudal japan
Influences Metal Gear Solid-series
Name: 449, dtype: object
http://duckduckgo.com/html/?q=%22Shinobi%22%20AND%20Tapio%20Kemppainen%20%28Mets%C3%A4%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Shiny Gauntlet
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://store.steampowered.com/app/454700/
Status stable
Released 2015/10/01
Updated 2017/04/17
Developer Spritewrench
Theme Fantasy
Influences Binding of Isaac, nuclear throne
Name: 450, dtype: object
http://duckduckgo.com/html/?q=%22Shiny%20Gauntlet%22%20AND%20Spritewrench%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Shoot First
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://teknopants.com/games/shootfirst
Status stable
Released 2010/07/06
Updated 2010/07/28
Developer Beau Blyth
Theme Action / Co-op
Influences Robotron?
Name: 451, dtype: object
http://duckduckgo.com/html/?q=%22Shoot%20First%22%20AND%20Beau%20Blyth%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name sick peter
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.gamesofgrey.com/blog
Status beta
Released 2011/04/01
Updated 2011/04/01
Developer Darren Grey
Theme Stealth, Story
Influences Molydeux
Name: 452, dtype: object
http://duckduckgo.com/html/?q=%22sick%20peter%22%20AND%20Darren%20Grey%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Sigmore Mines
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sigmoremines.ktgames.net/
Status stable
Released 2007/00/00
Updated 2007/00/00
Developer Kamil Toszek (KTGames.net)
Theme fantasy
Influences Dweller
Name: 453, dtype: object
http://duckduckgo.com/html/?q=%22Sigmore%20Mines%22%20AND%20Kamil%20Toszek%20%28KTGames.net%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Sigmore Mines 2
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sigmoremines2.ktgames.net/
Status stable
Released 2008/01/00
Updated 2008/01/00
Developer Kamil Toszek (KTGames.Net)
Theme fantasy
Influences Dweller,Sigmore Mines
Name: 454, dtype: object
http://duckduckgo.com/html/?q=%22Sigmore%20Mines%202%22%20AND%20Kamil%20Toszek%20%28KTGames.Net%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Sigmore Mines 2 For Android
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.ktgames.net/
Status stable
Released 2011/05/00
Updated 2011/05/00
Developer Kamil Toszek (KTGames.Net)
Theme fantasy
Influences Dweller,Sigmore Mines
Name: 455, dtype: object
http://duckduckgo.com/html/?q=%22Sigmore%20Mines%202%20For%20Android%22%20AND%20Kamil%20Toszek%20%28KTGames.Net%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Sil
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.amirrorclear.net/flowers/game/sil/
Status stable
Released 2012/01/03
Updated 2016/01/04
Developer half
Theme Fantasy
Influences Angband
Name: 456, dtype: object
http://duckduckgo.com/html/?q=%22Sil%22%20AND%20half%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name SilverQuest
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.desura.com/games/silverquest
Status stable
Released 2008/09/02
Updated 2011/09/19
Developer Wolfgang Wozniak(''SilverQuestGame@gmail.com'')
Theme Fantasy
Influences Diablo, Dwarf Fortress, Legend of Zelda
Name: 457, dtype: object
http://duckduckgo.com/html/?q=%22SilverQuest%22%20AND%20Wolfgang%20Wozniak%28%27%27SilverQuestGame%40gmail.com%27%27%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Skills Angband (Sangband)
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://code.google.com/p/skills-angband/
Status stable
Released 1998/07/20
Updated 2010/10/08
Developer Leon Marrick, Joshua Middendorf
Theme Fantasy
Influences Angband 3.0.6; Oangband 0.5.0
Name: 458, dtype: object
http://duckduckgo.com/html/?q=%22Skills%20Angband%20%28Sangband%29%22%20AND%20Leon%20Marrick%20OR%20%20Joshua%20Middendorf%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Slash'EM Extended
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://nethackwiki.com/wiki/Slash%27EM_Extended
Status stable
Released 2013/12/16
Updated 2018/02/15
Developer Amy Bluescreenofdeath
Theme fantasy
Influences NetHack, SLASH, SLASH'EM, UnNetHack, SporkHack...
Name: 459, dtype: object
http://duckduckgo.com/html/?q=%22Slash%27EM%20Extended%22%20AND%20Amy%20Bluescreenofdeath%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b" |MSG| Scraping https://nethackwiki.com/wiki/Slash'EM_Extended ..."
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/nethack/comments/2l5p2n/slashem_extended_the_kitchen_sink_variant/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://speedydeletion.wikia.com/wiki/Slash%27EM_Extended ...'
b' |MSG| Found article'
b" |MSG| Scraping https://nethackwiki.com/wiki/Talk:Slash'EM_Extended ..."
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4230.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4230.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4230.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://groups.google.com/d/topic/rec.games.roguelike.nethack/VAQDzj6SBME ...'
b' |MSG| Found article'
b' |MSG| Scraping https://vawipirataleso946.ml/5102021/82f4e01f8-slash39em-download-816cf9 ...'
b'!!FAIL!! Failed to load https://vawipirataleso946.ml/5102021/82f4e01f8-slash39em-download-816cf9'
HTTPSConnectionPool(host='vawipirataleso946.ml', port=443): Max retries exceeded with url: /5102021/82f4e01f8-slash39em-download-816cf9 (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x115132fd0>: Failed to establish a new connection: [Errno 8] nodename nor servname provided, or not known',))
b' |MSG| Scraping https://www.revolvy.com/topic/List%20of%20roguelikes ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.somethingawful.com/showthread.php?threadid=3087592&goto=lastpost ...'
b' |MSG| Scraping https://ipfs.io/ipfs/QmXoypizjW3WknFiJnKLwHCnL72vedxjQkDDP1mXWo6uco/wiki/List_of_roguelikes.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://everipedia.org/wiki/List_of_roguelikes/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.revolvy.com/topic/Chronology%20of%20roguelike%20video%20games&item_type=topic ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/D6bUaK8N ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rec.games.roguelike.nethack.narkive.com/QV5aUvF0/slash-em-extended-version-v50-released ...'
b' |MSG| Found article'
b' |MSG| Scraping http://boards.4chancode.org/vg/thread/222463856 ...'
b' |MSG| Scraping http://self.gutenberg.org/articles/Chronology_of_roguelike_video_games ...'
b' |MSG| Scraping https://topics.revolvy.com/topic/List%20of%20roguelikes&item_type=topic ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pediaview.com/openpedia/List_of_roguelikes ...'
b' |MSG| Found article'
Name Slaves to Armok II: Dwarf Fortress
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.bay12games.com/dwarves/
Status beta
Released 2006/10/08
Updated 2018/03/12
Developer Bay 12 Games
Theme Fantasy
Influences Dungeon Keeper, Miner VGA, SimCity(?)
Name: 460, dtype: object
http://duckduckgo.com/html/?q=%22Slaves%20to%20Armok%20II%3A%20Dwarf%20Fortress%22%20AND%20Bay%2012%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Slayer
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.hawkeye.karoo.net/slayer/
Status beta
Released 2008/2/20
Updated 2008/07/21
Developer Rob Wilson
Theme Fantasy
Influences NaN
Name: 461, dtype: object
http://duckduckgo.com/html/?q=%22Slayer%22%20AND%20Rob%20Wilson%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.guitartabsexplorer.com/slayer-Tabs/post-mortem-tab.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=xz-6rUdyz2c ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=CL-zHxREZCg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefullwiki.org/Post_Mortem_(Boston_Band) ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.songlyrics.com/slayer/post-mortem-lyrics/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/music/2013/may/08/rocks-backpages-slayer-interview-1987 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sherdog.com/news/articles/UFC-220-PostMortem-Giant-Slayer-131383 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.allmusic.com/album/post-mortem-the-tribute-to-slayer-mw0000660611 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.spin.com/2011/07/slayer-and-rob-zombie-launch-hell-earth-tour/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://watchersonthewall.com/game-thrones-post-mortem-door/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itunes.apple.com/us/album/post-mortem-slayer-tribute/346345597 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.discogs.com/Various-Post-Mortem-The-Tribute-To-Slayer/release/3765606 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki2.org/en/Mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.slayer.net/collections/mens ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metalmusicarchives.com/artist/mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://screamermagazine.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://buffy.wikia.com/wiki/Slayer_timeline ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.angrymetalguy.com/madder-mortem-red-tooth-claw-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pathofexile.com/forum/view-thread/1813551 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://muz-color.ru/?s=Post+Mortem+OST ...'
b' |MSG| Found article'
b' |MSG| Scraping http://post-mortem-official.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pathofexile.gamepedia.com/Slayer_(Ascendant_passive) ...'
b' |MSG| Found article'
b' |MSG| Scraping http://onlineradiobox.com/album/346345597-post-mortem--slayer- ...'
b' |MSG| Found article'
Name Sleeping Beauty
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ondras.github.io/sleeping-beauty/
Status stable
Released 2017/03/10
Updated 2017/03/10
Developer Ondras
Theme Internal
Influences NaN
Name: 462, dtype: object
http://duckduckgo.com/html/?q=%22Sleeping%20Beauty%22%20AND%20Ondras%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.dltk-teach.com/rhymes/sleeping-beauty/story.htm ...'
b' |MSG| Scraping http://www.sparknotes.com/film/sleepingbeauty/section1/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=TPLSfL5-Y3g ...'
b' |MSG| Found article'
b' |MSG| Scraping https://interestingliterature.com/2017/09/12/a-summary-and-analysis-of-the-sleeping-beauty-fairy-tale/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://australianballet.com.au/education-resources/the-sleeping-beauty-the-story ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ranker.com/review/sleeping-beauty/2045931 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=lmgLOdCrJRw ...'
b' |MSG| Found article'
b' |MSG| Scraping https://prezi.com/kinkwv5f0fv-/compare-maleficent-and-sleeping-beauty/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.lesswrong.com/posts/KZh9eKCkBRbevkGnP/repeated-and-improved-sleeping-beauty-problem ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/film/2011/oct/13/sleeping-beauty-film-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sbs.com.au/movies/movie/sleeping-beauty ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.mafa.com/Sleeping-Beauty-And-Briar-Beauty ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sleepingbeautygame.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.speakaboos.com/story/sleeping-beauty ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.kidsgen.com/fables_and_fairytales/sleeping_beauty.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thoughtco.com/sleeping-beauty-and-the-beast-monologue-2713280 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://sleepingbeautyaz.com/ ...'
b' |MSG| Scraping http://ttte.wikia.com/wiki/Sleeping_Beauty ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tvtropes.org/pmwiki/pmwiki.php/Literature/SleepingBeauty ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sleepingbeautyandme.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usnews.com/news/articles/2014/05/30/maleficent-sleeping-beauty-and-rethinking-fairy-tale-rape ...'
b' |MSG| Found article'
b' |MSG| Scraping https://hubpages.com/education/the-sleeping-beauty ...'
b' |MSG| Scraping https://www.bostonballet.org/sleepingbeauty ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.yahoo.com/entertainment/maleficent-versus-sleeping-beauty-how-do-they-87349410587.html ...'
b' |MSG| Found article'
Name Sleepless Temple
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://dagondev.itch.io/sleeplesstemple
Status alpha
Released 2015/09/19
Updated 2015/09/23
Developer DagonDev
Theme Dark-fantasy
Influences Dark Souls I, Demon Souls, Dark Souls II, Sunl...
Name: 463, dtype: object
http://duckduckgo.com/html/?q=%22Sleepless%20Temple%22%20AND%20DagonDev%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://dagondev.itch.io/sleeplesstemple ...'
b' |MSG| Scraping http://metalarea.org/forum/index.php?showtopic=285520 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.darkhorizonrecords.com/Duch-Czerni-Sleepless-Temple-MCD_p_4495.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.radiotimes.com/news/tv/2018-09-02/the-imitation-game-itv-time-impressionists-new-panel-show/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freephpvideoscript.com/demo/watch/UcpvrLzTTVk ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.escapegames24.com/2018/08/rabbit-and-go-out.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itch.io/games/free/genre-rpg/tag-top-down ...'
b' |MSG| Scraping http://www.nintendolife.com/news/2018/09/guide_upcoming_nintendo_switch_games_and_accessories_for_september_and_october ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=50458.0 ...'
b' |MSG| Scraping http://www.indieretronews.com/2018/09/atic-atac-remake-is-in-works-and-will.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dailymail.co.uk/sport/football/article-6123471/Watford-Q-Troy-Deeney-defied-expectations.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itch.io/games/tag-roguelike/tag-top-down ...'
b' |MSG| Scraping https://itch.io/games/free/genre-rpg/tag-roguelite ...'
b' |MSG| Scraping https://dagondev.itch.io/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hindustantimes.com/more-lifestyle/janmashtami-2018-date-time-and-significance-of-the-festival/story-StMRoNi6xQJ8GyKFND12VJ.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ancient-origins.net/history/history-of-dogs-and-us-0010631 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dagondev.com/games ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=4745.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=4745.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=4745.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://itch.io/games/genre-rpg/tag-dark-souls ...'
b' |MSG| Found article'
Name Snakelike
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.snakelike.world/
Status beta
Released 2017/06/03
Updated 2017/09/02
Developer Placate The Cattin
Theme Fantasy
Influences NetHack, Snake
Name: 464, dtype: object
http://duckduckgo.com/html/?q=%22Snakelike%22%20AND%20Placate%20The%20Cattin%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://placatethecattin.itch.io/snakelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kickstarter.com/projects/611891928/snakelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://snakelike.world/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/snakelike/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://placatethecattin.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://try.feedme.beer/Kickstarter/Snakelike ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ludumdare.com/compo/2015/08/28/snakelike-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.bingapis.com/images/search?q=Placate+Icon&FORM=RESTAB ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/SnakelikeGame/ ...'
b' |MSG| Scraping https://apkpure.com/snakelike/com.kyaloj.snakelike ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.crosswordsolver.org/clues/s/snakelike-swimmers.1839 ...'
b' |MSG| Scraping https://twitter.com/snakelikegame ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nytimes.com/2015/04/19/magazine/the-disturbing-photography-of-sally-mann.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://snakelike.wordmeanings.org/ ...'
b' |MSG| Scraping https://thesaurus.plus/related/snakelike/winding ...'
b' |MSG| Scraping https://legal-dictionary.thefreedictionary.com/snakelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wordgamehelper.com/word/snakelike ...'
b' |MSG| Scraping https://www.thesaurus.com/browse/snakelike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=256bg5_vNvg ...'
b' |MSG| Scraping https://www.answers.com/Q/What_word_has_the_meaning_snakelike_and_wavy ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.technologyreview.com/s/409851/snakelike-robots-for-heart-surgery/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.wineverygame.com/word/meaning/snakelike.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefullwiki.org/snakelike ...'
b' |MSG| Found article'
Name Snowfallen
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://almondbun.itch.io/snowfallen
Status alpha
Released 2016/12/12
Updated 2016/12/12
Developer Marcel Schwalb (Almondbun)
Theme Nordic Fantasy
Influences Rogue
Name: 465, dtype: object
http://duckduckgo.com/html/?q=%22Snowfallen%22%20AND%20Marcel%20Schwalb%20%28Almondbun%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Solstice
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://forums.roguetemple.com/irldb/index.php...
Status beta
Released 2008/00/00
Updated 2014/7/30
Developer Brigand
Theme Fantasy
Influences NetHack Dwarf_Fortress
Name: 466, dtype: object
http://duckduckgo.com/html/?q=%22Solstice%22%20AND%20Brigand%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Souls Rescue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://blackbones.itch.io/soulsrescue
Status alpha
Released 2016/5/1
Updated 2016/08/21
Developer BlackBonesFamily
Theme Fantasy
Influences Quest of Dungeons, Sproggiwood
Name: 467, dtype: object
http://duckduckgo.com/html/?q=%22Souls%20Rescue%22%20AND%20BlackBonesFamily%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name SpaceNodes
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://codingden.net/ld-24-warmup-game/
Status beta
Released 2012/00/00
Updated 2012/00/00
Developer RedMike
Theme Strategy
Influences NaN
Name: 468, dtype: object
http://duckduckgo.com/html/?q=%22SpaceNodes%22%20AND%20RedMike%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Space Privateers
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://hackage.haskell.org/package/SpacePriva...
Status beta
Released 2014/08/08
Updated 2014/8/8
Developer Tuukka Turto
Theme Fantasy in Space
Influences Nethack
Name: 469, dtype: object
http://duckduckgo.com/html/?q=%22Space%20Privateers%22%20AND%20Tuukka%20Turto%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Space Grunts
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://spacegrunts.com/
Status stable
Released 2015/09/15
Updated 2015/11/08
Developer Orangepixel
Theme Sci-fi
Influences Brogue, Half-way, DoomRL
Name: 470, dtype: object
http://duckduckgo.com/html/?q=%22Space%20Grunts%22%20AND%20Orangepixel%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Spelly
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://spelly-game.firebaseapp.com/?utm_sourc...
Status stable
Released 2015/00/00
Updated 2016/05/19
Developer tps12
Theme Anagrams
Influences Scrabble
Name: 471, dtype: object
http://duckduckgo.com/html/?q=%22Spelly%22%20AND%20tps12%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Spelunky
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://spelunkyworld.com/
Status stable
Released 2008/12/21
Updated 2010/00/00
Developer Derek Yu
Theme Indiana Jones
Influences Nethack
Name: 472, dtype: object
http://duckduckgo.com/html/?q=%22Spelunky%22%20AND%20Derek%20Yu%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Splunge
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://splunge.sourceforge.net/
Status alpha
Released 1000/00/00
Updated 2011/03/01
Developer Guy Paterson-Jones
Theme Fantasy
Influences Nethack, Crawl
Name: 473, dtype: object
http://duckduckgo.com/html/?q=%22Splunge%22%20AND%20Guy%20Paterson-Jones%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name SporkHack
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sporkhack.com/
Status beta
Released 2007/07/00
Updated 2010/05/02
Developer Derek S. Ray
Theme Fantasy
Influences NetHack
Name: 474, dtype: object
http://duckduckgo.com/html/?q=%22SporkHack%22%20AND%20Derek%20S.%20Ray%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Sproggiwood
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.freeholdgames.com/
Status major
Released 2014/10/00
Updated 2014/11/00
Developer Freehold Games
Theme Finnish fantasy
Influences Caves of Qud, ADOM, DotA
Name: 475, dtype: object
http://duckduckgo.com/html/?q=%22Sproggiwood%22%20AND%20Freehold%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Star Wars Miniature
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://github.com/ondras/star-wars
Status stable
Released 2012/11/20
Updated 2012/11/20
Developer Ondras
Theme Star Wars
Influences NaN
Name: 476, dtype: object
http://duckduckgo.com/html/?q=%22Star%20Wars%20Miniature%22%20AND%20Ondras%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Steam Marines
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.steammarines.com/
Status beta
Released 2011/10/17
Updated 2014/09/24
Developer Worthless Bums
Theme Sci-fi, Steampunk
Influences Space Hulk
Name: 477, dtype: object
http://duckduckgo.com/html/?q=%22Steam%20Marines%22%20AND%20Worthless%20Bums%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Steam Sky
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://thindil.github.io/steamsky/
Status stable
Released 2016/07/24
Updated 2018/08/19
Developer Thindil
Theme Steampunk
Influences Dwarf Fortress, Elite, CataclysmDDA
Name: 478, dtype: object
http://duckduckgo.com/html/?q=%22Steam%20Sky%22%20AND%20Thindil%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Steamband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://angband.oook.cz/steamband/steamband.html
Status beta
Released 2002/05/27
Updated 2007/12/24
Developer Courtney Campbell (''campbell''@''oook.cz'')
Theme Science Fiction, Steampunk
Influences Angband 2.9.3
Name: 479, dtype: object
http://duckduckgo.com/html/?q=%22Steamband%22%20AND%20Courtney%20Campbell%20%28%27%27campbell%27%27%40%27%27oook.cz%27%27%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Subterrane
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://subterrane.tarindel.com/
Status alpha
Released 2006/11/06
Updated 2007/08/09
Developer Alex Pomeranz
Theme Fantasy,Underground dungeon crawl
Influences Crawl, Nethack
Name: 480, dtype: object
http://duckduckgo.com/html/?q=%22Subterrane%22%20AND%20Alex%20Pomeranz%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Super-Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rogue.rogueforge.net/super-rogue-9-0/
Status stable
Released 2004/84/05
Updated 2005/03/22
Developer Robert D. Kindelberger, Roguelike Restoration ...
Theme NaN
Influences Rogue 3.6
Name: 481, dtype: object
http://duckduckgo.com/html/?q=%22Super-Rogue%22%20AND%20Robert%20D.%20Kindelberger%20OR%20%20Roguelike%20Restoration%20Project%20OR%20%20others%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name SurviveRL
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://surviverl.shoutwiki.com/wiki/Main_Page
Status alpha
Released 2013/06/27
Updated 2013/08/22
Developer Jason Coombes
Theme Survival
Influences Minecraft, Ultima Online, Dwarf Fortress, Terr...
Name: 482, dtype: object
http://duckduckgo.com/html/?q=%22SurviveRL%22%20AND%20Jason%20Coombes%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Sword of Fargoal
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://fargoal.com/
Status stable
Released 1983/00/00
Updated 1983/00/00
Developer Jeff McCord
Theme Fantasy
Influences NaN
Name: 483, dtype: object
http://duckduckgo.com/html/?q=%22Sword%20of%20Fargoal%22%20AND%20Jeff%20McCord%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Sword of the Stars: The Pit
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sots-thepit.com/
Status stable
Released 2013/00/00
Updated 2016/03/21
Developer Kerberos Productions
Theme Science Fiction
Influences Rogue for the Atari ST, NetHack, Diablo
Name: 484, dtype: object
http://duckduckgo.com/html/?q=%22Sword%20of%20the%20Stars%3A%20The%20Pit%22%20AND%20Kerberos%20Productions%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.pcgame.com/sword-of-the-stars-the-pit ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/233700/Sword_of_the_Stars_The_Pit/ ...'
b' |MSG| Scraping https://store.steampowered.com/app/449720/Sword_of_the_Stars_The_Pit__Healer/ ...'
b' |MSG| Scraping http://www.ovagamespc.com/sword-of-the-stars-the-pit-osmium-edition-plaza.html ...'
b' |MSG| Scraping http://indiegames.download/games/indie/sword-of-the-stars-the-pit ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.greenmangaming.com/games/sword-of-the-stars-the-pit-healer-pc/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fullgamesforpc.com/sword-of-the-stars-the-pit-download-pc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gog.com/game/sword_of_the_stars_the_pit_osmium_edition ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ovagames.com/sword-of-the-stars-the-pit-osmium-edition-plaza.html ...'
b' |MSG| Scraping https://www.gog.com/game/sword_of_the_stars_the_pit_osmium_edition_the_pilgrim ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ovagamespc.com/sword-of-the-stars-the-pit-osmium-edition-update-v1-6-2-plaza.html ...'
b' |MSG| Scraping http://www.metacritic.com/game/pc/sword-of-the-stars-the-pit ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamersgate.com/DLC-SOTSTPN-STEAM/sword-of-the-stars-the-pit-necromancer ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.destructoid.com/review-sword-of-the-stars-the-pit-249795.phtml ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=PWRxVZJ8Oc4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.amazon.com/Kerberos-Productions-Inc-Sword-Stars/dp/B00H8VWCCS ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/sword-of-the-stars-the-pit ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamingbazar.com/en/all-games/3578-sword-of-the-stars-the-pit.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/sword-of-the-stars-the-pit-osmium-edition-plaza.html ...'
b' |MSG| Scraping http://steamtradingcards.wikia.com/wiki/Sword_of_the_Stars:_The_Pit ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metacritic.com/game/pc/sword-of-the-stars-the-pit---mind-games ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.greenmangaming.com/games/Sword-of-the-Stars-The-Pit-The-Pilgrim-DLC ...'
b' |MSG| Found article'
Name TOband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://sourceforge.jp/projects/toband/
Status beta
Released 2004/04/01
Updated 2005/03/07
Developer macband
Theme Fantasy/Tactics Ogre
Influences Hengband
Name: 485, dtype: object
http://duckduckgo.com/html/?q=%22TOband%22%20AND%20macband%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://toband.58zhanhui.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/stream/PhysicsOfSemiconductorDevices_855/PhysicsOfSemiconductorDevices3rdEdition-S.M.SzeAndKwokK.Ng_djvu.txt ...'
b' |MSG| Found article'
b' |MSG| Scraping https://zh.osdn.net/projects/toband/ ...'
b' |MSG| Scraping https://forebears.io/surnames/toband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/lifehacks/comments/6ht2un/my_xbox_broke_with_the_1_game_i_own_on_disc/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.houseofnames.com/toband-family-crest ...'
b' |MSG| Found article'
b' |MSG| Scraping https://stackoverflow.com/questions/5176763/r-function-to-create-band-matrix ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nickfinder.com/toband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wikiwand.com/ja/TOband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefreedictionary.com/words-that-end-in-toband ...'
b' |MSG| Scraping http://www.dailymail.co.uk/health/article-5551139/Mom-37-stage-4-colon-cancer-reveals-terms-diagnosis.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.scribd.com/document/247169609/Industrial-Culture-Handbook ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.founder2be.com/index.php/toband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/toband1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ruen.dict.cc/?s=toband%5Bbirds%5D ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=grV3P41nNWQ ...'
b' |MSG| Scraping http://www.wunc.org/post/life-death-and-faith-collide-prosperity-gospel-scholar-kate-bowler-faces-stage-4-cancer ...'
b' |MSG| Found article'
b' |MSG| Scraping http://translation.sensagent.com/translate/TOBAND/ja/multilingual.html ...'
b' |MSG| Scraping http://www.twibly.org/toband1 ...'
b' |MSG| Scraping http://www.4answered.com/questions/view/4efdbb/R-function-to-create-band-matrix ...'
b' |MSG| Scraping http://www.wowarmory.org/eu/bronzebeard/Toband.html ...'
b' |MSG| Scraping http://mirrors.dotsrc.org/osdn/toband/11025/ ...'
b' |MSG| Scraping http://magnetoband.com.domainsdata.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.se80.co.uk/sapfms/e/ehpr/ehprc_rcs_pfr_shlpexit_toband.htm ...'
b' |MSG| Found article'
Name Tale written in bytes
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://aniolycyberprzestrzeni.pl/Projects/Deta...
Status stable
Released 2018/01/12
Updated 2018/01/12
Developer Dawid Farbaniec
Theme Cyber-fantasy
Influences Roguelike and Platformer games
Name: 486, dtype: object
http://duckduckgo.com/html/?q=%22Tale%20written%20in%20bytes%22%20AND%20Dawid%20Farbaniec%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.kongregate.com/games/iamdavid_f/tale-written-in-bytes ...'
b' |MSG| Found article'
b' |MSG| Scraping https://aniolycyberprzestrzeni.pl/TaleWrittenInBytesOnline/index.html ...'
Name T.o.M.E.
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://te4.org/
Status major
Released 2010/10/24
Updated 2017/03/09
Developer DarkGod, various Dark Priests
Theme Fantasy
Influences Tolkien, Anne McCaffrey
Name: 487, dtype: object
http://duckduckgo.com/html/?q=%22T.o.M.E.%22%20AND%20DarkGod%20OR%20%20various%20Dark%20Priests%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://angband.oook.cz/forum/showthread.php?t=6632 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.cultin.ru/game-tome ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=_VRm-aopiOw ...'
b' |MSG| Found article'
b' |MSG| Scraping http://zenway.ru/page/tome ...'
b'!!FAIL!! Failed to load http://zenway.ru/page/tome'
HTTPConnectionPool(host='zenway.ru', port=80): Max retries exceeded with url: /page/tome (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x114ad3cc0>, 'Connection to zenway.ru timed out. (connect timeout=10.1)'))
b' |MSG| Scraping https://www.kickstarter.com/projects/1111318456/the-treasury-of-magical-enigmas-tome ...'
b' |MSG| Found article'
b' |MSG| Scraping https://te4.org/games/tome2 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.iapsop.com/ssoc/1941__fox___sparks_of_truth_your_inner_power.pdf ...'
b' |MSG| Scraping https://vk.com/wall-168484256_28 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki2.org/ru/T.o.M.E. ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plus.google.com/communities/106422061428947892330 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thefullwiki.org/ToME ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.etana.org/sites/default/files/coretexts/15563.pdf ...'
b' |MSG| Scraping http://otomesiren.tumblr.com/ ...'
b' |MSG| Scraping https://freesoft.ru/tome ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=1291702686 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://khazarzar.skeptik.net/books/pines01.pdf ...'
b' |MSG| Scraping https://us.forums.blizzard.com/en/overwatch/t/e-maans-birthday/143402 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rpnation.com/threads/t-o-m-e-the-terrain-of-magical-expertise.122442/page-3 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quotev.com/story/8706952/Various-Anime-Yandere-x-Reader-Oneshots-Requests-Open/36 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://victorypremium.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dic.academic.ru/dic.nsf/ruwiki/1710566 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://aquasu-n.tumblr.com/ ...'
Name Tales of Middle Earth
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ftp.sunet.se/mirror/archive/ftp.sunet.s...
Status major
Released 2000/00/00
Updated 2008/00/00
Developer DarkGod
Theme Fantasy
Influences JRR Tolkien's Arda, Angband, PernAngband
Name: 488, dtype: object
http://duckduckgo.com/html/?q=%22Tales%20of%20Middle%20Earth%22%20AND%20DarkGod%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.moddb.com/mods/tales-of-middle-earth ...'
b' |MSG| Found article'
b' |MSG| Scraping http://talesofmiddleearth.co.uk/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=VFy2SLKLvJ0 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://aok.heavengames.com/tales-of-middle-earth ...'
b' |MSG| Scraping https://www.ancient-origins.net/history/history-of-dogs-and-us-0010631 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=V2eZ9nMk54U ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mnn.com/lifestyle/arts-culture/blogs/Tolkien-fall-gondolin-last-published-work ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2018/09/01/middle-earth-shadow-of-war-is-having-a-free-weekend/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.fanatical.com/en/game/middle-earth-shadow-of-war-definitive-edition ...'
b' |MSG| Scraping https://lotro.com/forums/showthread.php?290666-Difference-between-History-of-Middle-Earth-and-Silmarillion ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ancient-origins.net/news-history-archaeology/swedish-metropolis-viking-era-immigrants-0010638 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.independent.co.uk/arts-entertainment/books/jrr-tolkien-fall-of-gondolin-review-latest-last-book-christopher-harper-collins-a8516571.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.voobly.com/gamemods/mod/143/Tales-of-Middle-Earth ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.arabnews.com/node/1365406/middle-east ...'
b' |MSG| Scraping https://steamcommunity.com/app/221380/discussions/0/648814300348850380/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tales-of-middle-earth.in.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://middle-earth.xenite.org/kryptic-tales-of-middle-earth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lgdb.org/game/tales_middle_earth ...'
b' |MSG| Found article'
b' |MSG| Scraping https://yepdownload.com/tales-of-middle-earth ...'
b'!!FAIL!! Failed to load https://yepdownload.com/tales-of-middle-earth'
HTTPSConnectionPool(host='yepdownload.com', port=443): Max retries exceeded with url: /tales-of-middle-earth (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.reloaded.org/rate/87/5/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/TalesOfMiddleEarthOffical/?ref=page_internal ...'
b' |MSG| Scraping http://www.tolkienestate.com/en/writing/tales-of-middle-earth/history-of-middle-earth.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tales-of-middle-earth.en.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://talesofmiddleearth.tumblr.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://fanlore.org/wiki/Tales_of_Middle-earth ...'
b' |MSG| Found article'
Name Tangledeep
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://store.steampowered.com/app/628770/Tang...
Status stable
Released 2017/00/00
Updated 2018/2/1
Developer Impact Gameworks
Theme Fantasy
Influences Secret of Mana, Final Fantasy
Name: 489, dtype: object
http://duckduckgo.com/html/?q=%22Tangledeep%22%20AND%20Impact%20Gameworks%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://impactgameworks.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/628770/Tangledeep/ ...'
b' |MSG| Scraping https://impact-gameworks.itch.io/tangledeep ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gog.com/game/tangledeep ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thirdcoastreview.com/2018/02/21/game-review-tangledeep/ ...'
b' |MSG| Scraping http://gamerkong.com/games/indie/tangledeep ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/game/tangledeep/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thegww.com/tangledeep-review/ ...'
b' |MSG| Scraping https://www.gamespace.com/featured/tangledeep-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/company/impact-gameworks/articles ...'
b' |MSG| Scraping https://rpgamer.com/game/tangledeep/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=KO7Nhn1ZCmA ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tangledeep.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ru-ru.facebook.com/impactgameworks/posts/?ref=page_internal ...'
b' |MSG| Scraping http://ocremix.org/game/95513/tangledeep-win ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metacritic.com/game/pc/tangledeep ...'
b' |MSG| Found article'
b' |MSG| Scraping https://taigame.org/en/game/tangledeep ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.qwant.com/game/tangledeep?l=it ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kyojim.com/tangledeep-gog/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/tangledeepgame ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/tangledeep.html ...'
b' |MSG| Scraping https://www.dlh.net/en/reviews/2294/tangledeep-early-access-review.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamereactor.eu/previews/575143/Tangledeep/ ...'
b' |MSG| Scraping https://rawg.io/games/tangledeep ...'
b' |MSG| Found article'
Name Tastes Like Spelunky
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://mossmouth.com/forums/index.php?topic=10...
Status stable
Released 2010/04/00
Updated 2011/00/00
Developer Halibabica
Theme Sci-fi
Influences Spelunky
Name: 490, dtype: object
http://duckduckgo.com/html/?q=%22Tastes%20Like%20Spelunky%22%20AND%20Halibabica%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Teemu
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://koti.mbnet.fi/paulkp/teemu/teemu.htm
Status stable
Released 2008/12/07
Updated 2010/09/24
Developer Paul Pekkarinen
Theme Fantasy
Influences NaN
Name: 491, dtype: object
http://duckduckgo.com/html/?q=%22Teemu%22%20AND%20Paul%20Pekkarinen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Teleglitch
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://teleglitch.com/
Status stable
Released 2012/11/24
Updated 2013/00/00
Developer Johamm Tael & Mihkel Tael
Theme Sci-fi Survival Horror
Influences Doom, Alien Breed
Name: 492, dtype: object
http://duckduckgo.com/html/?q=%22Teleglitch%22%20AND%20Johamm%20Tael%20%26%20Mihkel%20Tael%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Telengard
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.aquest.com/telen.htm
Status stable
Released 1982/00/00
Updated 1982/00/00
Developer Daniel M. Lawrence
Theme Fantasy
Influences Dungeons and Dragons, DND
Name: 493, dtype: object
http://duckduckgo.com/html/?q=%22Telengard%22%20AND%20Daniel%20M.%20Lawrence%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name Telos
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://rsaarelm.github.com/telos
Status beta
Released 2012/003/27
Updated 2012/003/27
Developer Risto Saarelma
Theme Futuristic
Influences NaN
Name: 494, dtype: object
http://duckduckgo.com/html/?q=%22Telos%22%20AND%20Risto%20Saarelma%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Infinite Dungeons
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.windowsphone.com/en-us/store/app/th...
Status stable
Released 2014/09/03
Updated 1000/00/00
Developer Dawid Farbaniec
Theme Fantasy
Influences Rogue
Name: 495, dtype: object
http://duckduckgo.com/html/?q=%22The%20Infinite%20Dungeons%22%20AND%20Dawid%20Farbaniec%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Tombs
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://thetombs.com/
Status stable
Released 2005/04/16
Updated 2005/04/16
Developer Martin Woodard
Theme Fantasy
Influences NaN
Name: 496, dtype: object
http://duckduckgo.com/html/?q=%22The%20Tombs%22%20AND%20Martin%20Woodard%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Chase
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://nerdygentleman.itch.io/the-chase
Status stable
Released 2015/03/14
Updated 2015/03/15
Developer Lachlan Kingsford and Wade Dyer
Theme Horror
Influences Super Mario Bros
Name: 497, dtype: object
http://duckduckgo.com/html/?q=%22The%20Chase%22%20AND%20Lachlan%20Kingsford%20and%20Wade%20Dyer%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Conception
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ondras.zarovi.cz/games/conception/
Status stable
Released 2013/03/16
Updated 2013/03/16
Developer Ondras
Theme Internal
Influences NaN
Name: 498, dtype: object
http://duckduckgo.com/html/?q=%22The%20Conception%22%20AND%20Ondras%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Depths of Tolagal
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.the-depths-of-tolagal.com/
Status stable
Released 2014/11/07
Updated 2015/02/01
Developer Angry Toad Studios
Theme Fantasy
Influences NaN
Name: 499, dtype: object
http://duckduckgo.com/html/?q=%22The%20Depths%20of%20Tolagal%22%20AND%20Angry%20Toad%20Studios%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Diabololical Dungeons of Dr. Devil
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.8bitrocket.com/2010/12/21/16k-dddd/
Status alpha
Released 2010/12/21
Updated 2010/12/21
Developer Ace the SuperVillain
Theme Escape, Mad Scientist
Influences NaN
Name: 500, dtype: object
http://duckduckgo.com/html/?q=%22The%20Diabololical%20Dungeons%20of%20Dr.%20Devil%22%20AND%20Ace%20the%20SuperVillain%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Dungeon
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.jtiv.net/
Status stable
Released 2010/10/31
Updated 2010/12/18
Developer Half-Bit Software
Theme Fantasy
Influences The Dungeon of Doom
Name: 501, dtype: object
http://duckduckgo.com/html/?q=%22The%20Dungeon%22%20AND%20Half-Bit%20Software%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Duster in the Bunker
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://relativisticcomplexitist.itch.io/the-d...
Status stable
Released 2018/07/27
Updated 2018/07/27
Developer relativisticcomplexitist
Theme Sci-fi, Martial Arts
Influences Conway's Game of Life, DCSS, Caves of Qud, Dra...
Name: 502, dtype: object
http://duckduckgo.com/html/?q=%22The%20Duster%20in%20the%20Bunker%22%20AND%20relativisticcomplexitist%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Ground Gives Way
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.thegroundgivesway.com/
Status stable
Released 2014/006/20
Updated 2018/004/11
Developer BtS
Theme Fantasy
Influences Castlevania, POWDER , Incursion, Angband
Name: 503, dtype: object
http://duckduckgo.com/html/?q=%22The%20Ground%20Gives%20Way%22%20AND%20BtS%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Lair of Xar
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.cniska.net/index.html
Status stable
Released 2011/10/06
Updated 2011/10/06
Developer Calistar
Theme Fantasy
Influences NetHack, ADOM, Diablo
Name: 504, dtype: object
http://duckduckgo.com/html/?q=%22The%20Lair%20of%20Xar%22%20AND%20Calistar%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Land
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.elf-emulation.com/rcs/TheLand_5_0_2...
Status stable
Released 1985/00/00
Updated 2013/00/00
Developer Mike Riley
Theme Fantasy
Influences Rogue
Name: 505, dtype: object
http://duckduckgo.com/html/?q=%22The%20Land%22%20AND%20Mike%20Riley%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Last Rogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://thelastrogue.tumblr.com/
Status beta
Released 2013/12/27
Updated 2013/00/00
Developer co
Theme Wild West, Weird West, Post apocalyptic
Influences DoomRL, Brogue, Dungeon Crawl
Name: 506, dtype: object
http://duckduckgo.com/html/?q=%22The%20Last%20Rogue%22%20AND%20co%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Light of Amber
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://thelightofamber.webs.com/
Status unknown
Released 2012/006/28
Updated 2012/006/28
Developer Ulli Zähringer
Theme Fantasy
Influences NaN
Name: 507, dtype: object
http://duckduckgo.com/html/?q=%22The%20Light%20of%20Amber%22%20AND%20Ulli%20Z%C3%A4hringer%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Minstrel's Song
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://jonathanscorner.com/tms/download/downlo...
Status stable
Released 1998/00/00
Updated 2005/08/22
Developer Jonathan Hayward
Theme Fantasy
Influences Christianity
Name: 508, dtype: object
http://duckduckgo.com/html/?q=%22The%20Minstrel%27s%20Song%22%20AND%20Jonathan%20Hayward%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://cjshayward.com/simple/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://cjshayward.com/sitemap/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.angelfire.com/music2/classicfm/playlist2005.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/author/list/2333528.C_J_S_Hayward ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pinterest.com/pin/409898003556455974/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/name/nm0230692/filmorate ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/higjT2LY ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.celebri.com/biography/c-c-wright/15047197/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pinterest.com/pin/369717450645293905/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rc.umd.edu/taxonomy/term/17251/feed ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.revolvy.com/main/index.php?s=List%20of%20British%20films%20of%201937 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.copyright.gov/licensing/noi/files/Spotify%20USA%20Inc.-2017.10.26-NOI.xlsx ...'
b' |MSG| Scraping http://hcps.us/ar_elementary/results_whes_print.asp?sort=lvl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.uktw.co.uk/archive/work/conce/A ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.revolvy.com/main/index.php?s=James%20L.%20Brooks&item_type=topic ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.bookrags.com/ebooks/15447/58.html?mode=print ...'
b' |MSG| Found article'
b' |MSG| Scraping https://fr.scribd.com/doc/34832605/A-Survey-Course-in-British-Literature-ANA-MARIA-TUPAN ...'
b' |MSG| Found article'
b' |MSG| Scraping https://de.virtualdj.com/download/karaoke.html?order=artist ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fr.virtualdj.com/download/karaoke.html?order=genre ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.plattecountyschooldistrict.com/cms/lib09/MO01909184/Centricity/Domain/911/2017-18%20Compass%20Library%20Reports.xlsx ...'
b' |MSG| Scraping https://it.virtualdj.com/download/karaoke.html?order=invtitle ...'
b' |MSG| Found article'
b' |MSG| Scraping http://wikivisually.com/wiki/Music_and_politics ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.academia.edu/485133/_Role-Playing_toward_a_Virtual_Musical_Democracy_in_The_Lord_of_the_Rings_Online_Ethnomusicology_56_1_2012_31-62 ...'
b'!!FAIL!! Failed to load https://www.academia.edu/485133/_Role-Playing_toward_a_Virtual_Musical_Democracy_in_The_Lord_of_the_Rings_Online_Ethnomusicology_56_1_2012_31-62'
HTTPSConnectionPool(host='www.academia.edu', port=443): Read timed out. (read timeout=15.1)
b' |MSG| Scraping http://hcps2.hanover.k12.va.us/ar%5Felementary/results_hces_print.asp?sort=lvl ...'
b' |MSG| Found article'
Name The Moor
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://pax-anotherworld.blogspot.com/
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Manuel
Theme Fantasy but not so much...
Influences Too many!!!
Name: 509, dtype: object
http://duckduckgo.com/html/?q=%22The%20Moor%22%20AND%20Manuel%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://history.stackexchange.com/q/28288 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nytimes.com/2018/08/31/obituaries/martin-shubik-dead.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thesun.co.uk/news/2711167/david-lytton-saddleworth-moor-channel-4-documentary/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/sport/live/2018/sep/01/sportwatch-johnathan-thurston-plays-his-last-nrl-game-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/moorandlochcont07colqgoog ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.radiotimes.com/news/tv/2018-09-02/the-imitation-game-itv-time-impressionists-new-panel-show/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://themoorandmore.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thoughtco.com/the-men-in-black-3294024 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamerevolution.com/features/424463-donut-countys-creator-talks-about-stupid-raccoons-quadcopters-what-remains-of-edith-finch-and-more ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamer.com/ps2-games-best-overrated/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thecatholicthing.org/2016/03/16/ignatius-and-the-moor/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theglobeandmail.com/opinion/article-canada-must-learn-from-our-history-and-stand-firm-on-nafta/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://apkpure.com/moors-and-christians-the-game/com.komikiro.MorosyCristianosGame ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.sportbible.com/football/news-funny-reactions-usain-bolts-first-touch-on-his-debut-was-a-complete-fluke-20180831 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thewrap.com/the-front-runner-film-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.spectator.com.au/2017/08/moor-and-more/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/film/2018/sep/01/peterloo-review-grit-and-brilliance-in-mike-leighs-very-british-massacre ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/books/2014/may/25/the-moor-lives-landscape-literature-wonderful-william-atkins ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.britannica.com/topic/Moor-people ...'
b' |MSG| Found article'
b' |MSG| Scraping https://studymoose.com/othello-and-the-moor-of-venice-essay ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/26768857-the-moor-the-mason-and-the-alien ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thelastechomovement.blogspot.com/2011/02/black-moors-and-usa-constitution-treaty.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=tGUIhWIenDg ...'
b' |MSG| Found article'
b' |MSG| Scraping http://richardsubber.com/the-moor-and-more/ ...'
b' |MSG| Found article'
Name The Nightmare Cooperative
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://jonbro.itch.io/the-nightmare-cooperative
Status alpha
Released 2014/03/00
Updated 2014/06/16
Developer Jonbro
Theme Fantasy
Influences Zaga-33
Name: 510, dtype: object
http://duckduckgo.com/html/?q=%22The%20Nightmare%20Cooperative%22%20AND%20Jonbro%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://jonbro.itch.io/the-nightmare-cooperative ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/310070/The_Nightmare_Cooperative/ ...'
b' |MSG| Scraping https://www.rockpapershotgun.com/tag/the-nightmare-cooperative/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.appunwrapper.com/2014/09/02/the-nightmare-cooperative-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.qwant.com/game/the-nightmare-cooperative?l=br ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pockettactics.com/reviews/review-nightmare-cooperative/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thechive.com/2018/09/02/rare-video-games-that-will-cost-you-a-fortune-to-own-18-photos/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=sEwHM7K-YpQ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://jonbro.tk/blog/2014/03/03/The_Nightmare_Cooperative.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.50gameslike.com/games-like/the-nightmare-cooperative/ios ...'
b' |MSG| Found article'
b' |MSG| Scraping https://toucharcade.com/2014/09/05/the-nightmare-cooperative-review-2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.148apps.com/reviews/nightmare-cooperative-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.newgamesbox.net/the-nightmare-cooperative-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/the-nightmare-cooperative.html ...'
b' |MSG| Scraping https://www.theverge.com/2014/7/16/5902693/the-nightmare-cooperative ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.mob.org/game/the_nightmare_cooperative.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.stuff.tv/nightmare-cooperative/review ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.idownloadblog.com/2014/09/16/the-nightmare-cooperative-is-a-roguelike-and-puzzle-game-combined/ ...'
b' |MSG| Scraping https://steamcommunity.com/app/310070 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/the-nightmare-cooperative ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pocketgamer.co.uk/r/iPad/The+Nightmare+Cooperative/review.asp?c=61247 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://a2zp30.com/8430-the-nightmare-cooperative-54654.html ...'
b' |MSG| Scraping https://gamefaqs.gamespot.com/pc/817299-the-nightmare-cooperative/answers ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/the-nightmare-cooperative/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hardcoregamer.com/2014/07/21/review-the-nightmare-cooperative/95018/ ...'
b' |MSG| Found article'
Name The Only Shadow That the Desert Knows
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://humbit.com/shadow/
Status alpha
Released 2016/03/12
Updated 2016/03/17
Developer Jeremiah Reid
Theme Fantasy
Influences Ultima Ratio Regum, Lord of the Rings
Name: 511, dtype: object
http://duckduckgo.com/html/?q=%22The%20Only%20Shadow%20That%20the%20Desert%20Knows%22%20AND%20Jeremiah%20Reid%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://killscreen.com/articles/work-new-roguelike-can-time-travelling-historian/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamer.com/ps2-games-best-overrated/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://humbit.com/shadow/shadow-v1.5/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://prepareforchange.net/2018/09/02/transcending-the-cave-and-the-matrix/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.jere.in/stuff ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/politics/blog/live/2018/sep/03/brexit-boris-johnson-branded-great-charlatan-by-senior-tory-after-he-ridicules-chequers-plan-politics-live ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=9IYn0AUmBms ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.therichest.com/television/25-guest-appearances-on-sitcoms-that-only-true-fans-remember/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=56894.0 ...'
b' |MSG| Scraping https://stillnessinthestorm.com/2018/09/blueprint-for-a-better-world-through-understanding-et-contact-and-culture-justin-deschamps-contact-in-the-desert-2018/ ...'
b' |MSG| Scraping https://www.thegamer.com/games-troll-players-hacking-ban/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.roguetemple.com/7drl/2016/ ...'
b' |MSG| Scraping https://www.mmorpg.com/columns/shadows-awakening-review-fantastic-and-flawed-1000012985 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dcclothesline.com/2018/09/01/us-senator-chris-murphy-says-that-the-survival-of-our-democracy-depends-on-more-censorship/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.photo.net/photo/5672117 ...'
b' |MSG| Scraping https://mmajunkie.com/2018/09/ufc-151-canceled-jon-jones-dan-henderson-chael-sonnen-today-in-mma-history ...'
b' |MSG| Found article'
b' |MSG| Scraping https://me.me/i/ozymandias-in-egypts-sandy-silence-all-alone-stands-a-gigantic-11264553 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://brave-exvius.com/threads/unit-review-shadow-lord-final-fantasy-xi.40420/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/pics/comments/7fc8wq/the_largest_hotel_in_the_world_with_a_staggering/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://medium.com/unnecessary-improper/the-other-ozymandias-f9b90cfe09ca ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.letsplayindex.com/videos/16551087-2016-7drl-the-only-shadow-that-the-desert-knows-rogueliker ...'
b' |MSG| Found article'
b' |MSG| Scraping http://misc.thefullwiki.org/Shadow_of_the_statue ...'
b' |MSG| Scraping https://www.tumblr.com/search/the+purgatory+of+dante ...'
b' |MSG| Found article'
Name The Rogue of 5
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://jan-rl.itch.io/therogueof5
Status stable
Released 2017/12/21
Updated 2017/12/21
Developer Jan
Theme Fantasy
Influences POWDER, Brogue
Name: 512, dtype: object
http://duckduckgo.com/html/?q=%22The%20Rogue%20of%205%22%20AND%20Jan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://80.lv/articles/books-of-the-week-game-design-uncertainty-and-more/ ...'
b' |MSG| Scraping https://www.csmonitor.com/Daily/2018/20180831?src=promo ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jan-rl.itch.io/therogueof5 ...'
b' |MSG| Found article'
Name The Royal Wedding
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://ondras.zarovi.cz/games/trw/
Status stable
Released 2013/3/4
Updated 2013/3/4
Developer Ondras
Theme Classical
Influences NaN
Name: 513, dtype: object
http://duckduckgo.com/html/?q=%22The%20Royal%20Wedding%22%20AND%20Ondras%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.townandcountrymag.com/leisure/drinks/a19853522/royal-wedding-2018-drinking-game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.girlgames.com/the-royal-wedding.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nowtolove.com.au/royals/british-royal-family/royal-wedding-drinking-game-48398 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ondras.github.io/trw/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=1NG5bOj4Hzs ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.latimes.com/entertainment/tv/la-et-st-royal-wedding-nightmare-20180517-story.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.bustle.com/p/8-royal-wedding-games-you-can-play-while-prince-harry-meghan-markle-tie-the-knot-8080156 ...'
b' |MSG| Scraping http://www.y8.com/games/the_royal_wedding ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ultimacodex.com/2011/04/the-royal-wedding-drinking-game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamesetc.com/wedding.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesradar.com/the-royal-wedding-a-gamers-guide/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pedestrian.tv/news/royal-wedding-drinking-game/ ...'
b' |MSG| Scraping https://www.buzzfeed.com/gavon/the-royal-wedding-drinking-game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thrillist.com/eat/nation/royal-wedding-2018-drinking-game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/uk-news/live/2018/may/19/royal-wedding-2018-prince-harry-and-meghan-markle-marry-at-windsor-live ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.miniclip.com/games/royal-wedding/en/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://time.com/5238468/royal-wedding-guest-list/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.crikey.com.au/2018/05/18/official-royal-wedding-drinking-game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://theroyalwedding.wordpress.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.royal.uk/royal-wedding-cakes-history ...'
b' |MSG| Found article'
b' |MSG| Scraping https://finance.yahoo.com/news/royal-wedding-drinking-game-210200640.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.brides.com/story/royal-wedding-schedule ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sbs.com.au/news/how-can-i-watch-the-royal-wedding-in-australia ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.skynews.com.au/page/the-royal-wedding ...'
b' |MSG| Found article'
b' |MSG| Scraping http://sarahscoop.com/royal-wedding-drinking-game-2018/ ...'
b' |MSG| Found article'
Name The Ruins of
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.theruinsof.com/
Status stable
Released 2009/06/00
Updated 2012/11/00
Developer Ben Hendel-Doying
Theme Pre-WWI adventuring archaeology
Influences Rogue
Name: 514, dtype: object
http://duckduckgo.com/html/?q=%22The%20Ruins%20of%22%20AND%20Ben%20Hendel-Doying%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://gamefaqs.gamespot.com/gba/589582-lufia-the-ruins-of-lore/faqs/23518 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://benmakesgames.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.50gameslike.com/games-like/fallen-makina-and-the-city-of-ruins ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/developer/Kagura ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jastusa.com/fallen-makina-and-the-city-of-ruins ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.twinfinite.net/2018/07/octopath-traveler-how-to-unlock-the-post-game-dungeon-gate-of-finis/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kaguragames.com/fallengame/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ancient-origins.net/artifacts-other-artifacts/fun-everyone-evolving-history-board-games-007250 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ranker.com/review/lufia-the-ruins-of-lore/1484890 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.commonsensemedia.org/book-reviews/the-ruins-of-gorlan-the-rangers-apprentice-book-1 ...'
b' |MSG| Scraping https://www.romper.com/p/where-is-the-dragonpit-on-game-of-thrones-the-ruins-are-important-to-the-story-78604 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://druidstone-game.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://bulbapedia.bulbagarden.net/wiki/Ruins_of_Conflict ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.wowhead.com/quest=48445/the-ruins-of-oronaar ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=bpx3wdVJ1o8 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tvtropes.org/pmwiki/pmwiki.php/Main/RuinsOftheModernAge ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lotro-wiki.com/index.php/The_History_of_the_D%C3%BAnedain ...'
b' |MSG| Found article'
b' |MSG| Scraping https://mydeepdark.bandcamp.com/album/the-ruins-of-immortality ...'
b' |MSG| Found article'
b' |MSG| Scraping https://teach.com/blog/history-and-the-hunger-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://screenrant.com/game-thrones-history-seasons/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tardis.wikia.com/wiki/The_Ruins_of_Time_(short_story) ...'
b' |MSG| Found article'
b' |MSG| Scraping http://history-behind-game-of-thrones.com/gameofthrones/joffrey-baratheon/purple-wedding-eustace ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.newgrounds.com/portal/view/620676 ...'
b' |MSG| Found article'
Name The Serpentine Caves
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://bitbucket.org/ccapo/tsc
Status alpha
Released 2012/11/18
Updated 2012/11/20
Developer Chris Capobianco
Theme Fantasy
Influences Rogue, Lost Labyrinth
Name: 515, dtype: object
http://duckduckgo.com/html/?q=%22The%20Serpentine%20Caves%22%20AND%20Chris%20Capobianco%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Slimy Lichmummy
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.happyponyland.net/the-slimy-lichmummy
Status beta
Released 2006/00/00
Updated 2012/009/26
Developer Ulf Åström (aka Happy Pony Land)
Theme cyberpunk/fantasy
Influences Ultima Underworld, Deus Ex, Quake, Nethack
Name: 516, dtype: object
http://duckduckgo.com/html/?q=%22The%20Slimy%20Lichmummy%22%20AND%20Ulf%20%26Aring%3Bstr%26ouml%3Bm%20%28aka%20Happy%20Pony%20Land%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Temple of Torment
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.thetempleoftorment.net/
Status stable
Released 2014/01/00
Updated 2018/05/26
Developer Aukustus
Theme Fantasy, Late Medieval
Influences Diablo, Baldur's Gate, ADOM, d20
Name: 517, dtype: object
http://duckduckgo.com/html/?q=%22The%20Temple%20of%20Torment%22%20AND%20Aukustus%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Test of Inn
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://users.auth.gr/ekchatzi/
Status beta
Released 2009/00/00
Updated 2010/05/08
Developer Lefteris Hatzipetros
Theme NaN
Influences Elder Scrolls
Name: 518, dtype: object
http://duckduckgo.com/html/?q=%22The%20Test%20of%20Inn%22%20AND%20Lefteris%20Hatzipetros%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Thirty One Lieutenants of Sorcerer Bedsui
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://antumbrastation.com/bedsui-project.html
Status stable
Released 2017/10/14
Updated 2018/02/02
Developer Antumbrastation
Theme Fantasy
Influences ChessRogue, Hneftafl
Name: 519, dtype: object
http://duckduckgo.com/html/?q=%22The%20Thirty%20One%20Lieutenants%20of%20Sorcerer%20Bedsui%22%20AND%20Antumbrastation%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Tomb of Drewan
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://studio2.classicgaming.gamespy.com/valle...
Status stable
Released 1982/00/00
Updated 1982/00/00
Developer NaN
Theme Fantasy
Influences NaN
Name: 520, dtype: object
http://duckduckgo.com/html/?q=%22The%20Tomb%20of%20Drewan%22%20AND%20nan%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Tombs of Asciiroth
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://icculus.org/asciiroth
Status beta
Released 2009/07/24
Updated 2009/07/24
Developer Alx Dark
Theme Fantasy
Influences NetHack
Name: 521, dtype: object
http://duckduckgo.com/html/?q=%22The%20Tombs%20of%20Asciiroth%22%20AND%20Alx%20Dark%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Valley of Neustria
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link e-mail: sfsegreto@hotmail.com for binaries
Status beta
Released 1993/00/00
Updated 2005/00/00
Developer Steve Segreto
Theme Traditional Fantasy CRPG
Influences Daniel Lawrence's DnD
Name: 522, dtype: object
http://duckduckgo.com/html/?q=%22The%20Valley%20of%20Neustria%22%20AND%20Steve%20Segreto%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Veins of the Earth
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.moddb.com/mods/the-veins-of-the-earth
Status beta
Released 2013/07/15
Updated 2016/08/29
Developer Zireael
Theme Fantasy
Influences Incursion, D20, Sil, Angband, ADOM
Name: 523, dtype: object
http://duckduckgo.com/html/?q=%22The%20Veins%20of%20the%20Earth%22%20AND%20Zireael%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Wastes
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.reddit.com/r/thewastes
Status beta
Released 2015/04/00
Updated 2015/10/27
Developer Huw Millward (Huw2k8)
Theme Post-Apocalyptic, Post-Nuclear Apocalypse
Influences Fallout, Mad Max, Dwarf Fortress, FTL, fable, ...
Name: 524, dtype: object
http://duckduckgo.com/html/?q=%22The%20Wastes%22%20AND%20Huw%20Millward%20%28Huw2k8%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
Sleeping
Name The Wizard's Lair
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.wizardslair.co.uk/
Status beta
Released 2012/10/21
Updated 2013/11/22
Developer Devlin
Theme Fantasy
Influences NetHack, Sword of Fargoal
Name: 525, dtype: object
http://duckduckgo.com/html/?q=%22The%20Wizard%27s%20Lair%22%20AND%20Devlin%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.indiedb.com/games/the-wizards-lair ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/the-wizards-lair/reviews/434296 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamerankings.com/pc/194024-the-wizards-lair/index.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/magic_bane ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metacritic.com/game/pc/the-wizards-lair-2013 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://devlin.itch.io/wizardslair/purchase ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/the-wizards-lair ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=pGepo0hKBqM ...'
b' |MSG| Scraping http://www.cfug.org/2013/05/a-conversation-with-patrick-casey-of-peculiar-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/the-wizards-lair ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.acronymattic.com/The-Wizards-Lair-(TWL).html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.cfug.org/ ...'
b' |MSG| Scraping https://twitter.com/marcomaz ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/the-wizards-lair/reviews/500246 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pdxpipeline.com/2016/10/17/win-tickets-escape-room-portland-escapism-wizards-lair-halloween-portland/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ludumdare.com/compo/category/ld-16-2009/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pdxpipeline.com/event/nw-portland-new-years-eve-countdown-lulu-luscious-23hoyt-champagne-toast-dinner-reservations-dance-drag/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/259680/discussions/1/630799997254848090/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rpgwatch.com/forums/showthread.php?t=18416 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.tigsource.com/index.php?topic=12643.0 ...'
b' |MSG| Scraping http://www.indiegamenews.com/2016/07/rising-runner-puzzle-your-way-through.html ...'
b' |MSG| Found article'
Name The cave
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://roguecentral.org/doryen/libtcod/project...
Status alpha
Released 2010/09/19
Updated 2010/09/19
Developer jice
Theme NaN
Influences NaN
Name: 526, dtype: object
b'!!FAIL!! Failed to scrape http://roguebasin.roguelikedevelopment.org/index.php?title=The%20cave'
HTTPConnectionPool(host='roguebasin.roguelikedevelopment.org', port=80): Max retries exceeded with url: /index.php?title=The%20cave (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x114c162b0>, 'Connection to roguebasin.roguelikedevelopment.org timed out. (connect timeout=9.1)'))
http://duckduckgo.com/html/?q=%22The%20cave%22%20AND%20jice%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://prepareforchange.net/2018/09/02/transcending-the-cave-and-the-matrix/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/the-cave-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.the-philosophy.com/plato-allegory-cave-analysis ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/articles/2013/01/22/the-cave-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.spritesanddice.com/2016/10/untimely-review-cave-story ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thecave.nz/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/science/blog/2016/dec/21/why-archaeology-needs-to-come-out-of-the-cave-and-into-the-digital-age ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eurogamer.net/articles/2013-01-22-the-cave-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/6402687/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.lifewire.com/cave-story-free-game-pc-3901631 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://brewminate.com/platos-allegory-of-the-cave-and-the-modern-digital-world/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://venturebeat.com/2013/01/21/the-cave-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://guides.gamepressure.com/obduction/guide.asp?ID=37160 ...'
b' |MSG| Scraping https://www.goodreads.com/book/show/18770061-the-cave-and-the-light ...'
b' |MSG| Found article'
b' |MSG| Scraping http://thecavegame.com/ ...'
b' |MSG| Scraping https://www.utomik.com/games/the-cave/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://aphilosophersjourney.wordpress.com/2012/11/09/the-matrix-vs-the-allegory-of-the-cave/ ...'
b' |MSG| Scraping https://gamereviewsau.com/the-greedy-cave-hints-and-tips/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://the-cave.org/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://parkerworldhistory.blogspot.com/2008/04/allegory-of-cave-and-origins-of.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://hackernoon.com/ai-meets-socrates-and-the-allegory-of-the-cave-c2ec2f9fc074 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=u9TprL5vxQw ...'
b' |MSG| Found article'
Name The Lore Of Dwarves
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link https://sites.google.com/site/theloreofdwarves/
Status alpha
Released 1000/00/00
Updated 1000/00/00
Developer Fervour
Theme Fantasy
Influences Sil, Red Rogue, Dwarf Fortress
Name: 527, dtype: object
b'!!FAIL!! Failed to scrape http://roguebasin.roguelikedevelopment.org/index.php?title=The%20lore%20of%20dwarves'
HTTPConnectionPool(host='roguebasin.roguelikedevelopment.org', port=80): Max retries exceeded with url: /index.php?title=The%20lore%20of%20dwarves (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x114af9ac8>, 'Connection to roguebasin.roguelikedevelopment.org timed out. (connect timeout=9.1)'))
http://duckduckgo.com/html/?q=%22The%20Lore%20Of%20Dwarves%22%20AND%20Fervour%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://thexvid.com/rev/dwarves/ ...'
b' |MSG| Scraping https://www.ancient-origins.net/history/history-of-dogs-and-us-0010631 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=dRZwQnlzGX0 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://beforeitsnews.com/v3/science-and-technology/2018/2933729.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://plclip.com/rev/thedas+lore/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theguardian.com/film/2018/aug/31/the-other-side-of-the-wind-review-lost-orson-welles-epic-satire ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tvclip.biz/rev/dragon+age+lore/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://80.lv/articles/books-of-the-week-game-design-uncertainty-and-more/ ...'
b' |MSG| Scraping http://lotro.gamepressure.com/location.asp?id=1802 ...'
b' |MSG| Scraping https://www.thegamer.com/ps2-games-best-overrated/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://lotro.allakhazam.com/db/quest.html?lotrquest=314 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nexusmods.com/twopointhospital/news/13105 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thclips.com/rev/dragon+age+lore/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.tweaktown.com/news/63007/anthem-evolution-everything-biowares-made/index.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thewrap.com/venture-bros-lore-out-window/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://debojj.net/downloads/dragon-age-history ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wccftech.com/the-bards-tale-iv-gamescom-preview/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://middleearthnews.com/2012/09/09/an-eagles-view-of-middle-earth-9/ ...'
b' |MSG| Scraping https://www.theatlantic.com/letters/archive/2018/08/letters-jordan-peterson-and-the-hyper-partisan-morass/568120/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://quests.lotrolife.com/lost-lore-of-the-free-peoples/10989/ ...'
Name TileRogue
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.freewebs.com/drussell/TileRogue.htm
Status stable
Released 2008/03/27
Updated 2008/03/27
Developer Donnie Russell
Theme NaN
Influences Rogue
Name: 528, dtype: object
http://duckduckgo.com/html/?q=%22TileRogue%22%20AND%20Donnie%20Russell%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://sites.google.com/site/donnierussellii/tilerogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tilerogue.cn.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tilerogue.in.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://crpgaddict.blogspot.com/2010/02/rogue-story-and-gameplay.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.soft57.com/tilerogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://yepdownload.com/tilerogue ...'
b'!!FAIL!! Failed to load https://yepdownload.com/tilerogue'
HTTPSConnectionPool(host='yepdownload.com', port=443): Max retries exceeded with url: /tilerogue (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://www.gamespedition.com/pc-games/role-playing-games/tilerogue/tilerogue-secrets-and-easter-eggs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.dosgamesarchive.com/download/rogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rec.games.roguelike.development.narkive.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.softpaz.com/games/download-tilerogue-game-3698.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.li/shgKH ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.sockscap64.com/games/game/tilerogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=Ym5XE2rEdFM ...'
b' |MSG| Scraping https://www.dosgames.com/forum/about19706.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.foxbeen.com/marketstore/tr/windows/app_detail/tilerogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.redvaluegaming.com/games/tilerogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.giantbomb.com/tilerogue/3030-4045/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.changedetection.com/log/freewebs/drussell_log.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://neonstreet.net/ ...'
b'!!FAIL!! Failed to load https://neonstreet.net/'
HTTPSConnectionPool(host='neonstreet.net', port=443): Max retries exceeded with url: / (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://www.omnilexica.com/?q=tilerogue ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.askgames.net/game/3675/tilerogue ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.coredumpcentral.org/download.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.pcgamescompendium.com/game/17808/tilerogue/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gpu2.com/tilerogue ...'
b' |MSG| Found article'
Name TinyAngband
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://xangband.sourceforge.jp/tiny/eng.html
Status beta
Released 2009/02/25
Updated 2009/03/00
Developer iks
Theme Fantasy
Influences XAngband 1.3.0
Name: 529, dtype: object
http://duckduckgo.com/html/?q=%22TinyAngband%22%20AND%20iks%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://github.com/iks3/tinyangband ...'
b' |MSG| Found article'
b' |MSG| Scraping http://angband.oook.cz/variants.php?variant=tiny ...'
b' |MSG| Scraping https://iks3.github.io/tinyangband/eng.html ...'
b' |MSG| Scraping https://forums.roguetemple.com/index.php?topic=386.0 ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/index.php?topic=386.0'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /index.php?topic=386.0 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://videogamegeek.com/videogame/95006/tinyangband ...'
b' |MSG| Found article'
b' |MSG| Scraping https://archive.org/details/RoguelikeMegaCollection2015_201708 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.giantbomb.com/angband/3030-20262/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://osdn.net/projects/xangband/scm/svn/commits/1906 ...'
b' |MSG| Scraping https://alexvampire.wordpress.com/2016/01/24/roguelike-mega-collection-700-games/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pastebin.com/iyzPQdRK ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ocean-of-games.com/game/20262/angband/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://labs.parabola.nu/issues/373 ...'
Name TomeNET
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.tomenet.eu/
Status stable
Released 2001/00/00
Updated 2017/03/11
Developer C. Blue, Mikael, Adam, Relsiet (Runecraft), Mo...
Theme Tolkien
Influences MAngband
Name: 530, dtype: object
http://duckduckgo.com/html/?q=%22TomeNET%22%20AND%20C.%20Blue%20OR%20%20Mikael%20OR%20%20Adam%20OR%20%20Relsiet%20%28Runecraft%29%20OR%20%20Moltor%20%28Arcade%29%20OR%20%20Kurzel%20%28Runecraft%2Bgeneral%29%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://tomenet.eu/about.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tomenet.eu/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/TomeNET/ ...'
b' |MSG| Scraping https://vk.com/tomenet ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.yumpu.com/en/document/view/11132584/tomenet-guide ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tangar.info/en/blog/tomenet-why-open-source-matters/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://obsoletegamer.com/tomenet-a-multiplayer-roguelike-game-review-by-tommy/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://small-games.info/?go=game&c=10&i=15566 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mmobomb.com/forum/free-mmorpg/tomenet-rogue-like-multiplayer-online-game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gameogre.com/reviewdirectory/reviews/tomenet.php ...'
b' |MSG| Found article'
b' |MSG| Scraping http://streamguild.ru/viewtopic.php?t=616&start=60 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.freegamesutopia.com/game/tomenet/633/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://reddit-com.zxc.party/r/TomeNET ...'
b' |MSG| Scraping https://geclip.com/rev/tangledeep+%D0%BD%D0%B0+%D1%80%D1%83%D1%81%D1%81%D0%BA%D0%BE%D0%BC/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tradarr.net/pesni/tomenet ...'
b' |MSG| Scraping https://vnvideos.net/s/tomenet+%D0%B3%D0%B5%D0%B9%D0%BC%D0%BF%D0%BB%D0%B5%D0%B9 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=TDu5h6nctuY ...'
b' |MSG| Scraping https://slideplayer.com/slide/8420941/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.roguetemple.com/irldb/comment.php?id=TomeNET ...'
b'!!FAIL!! Failed to load https://forums.roguetemple.com/irldb/comment.php?id=TomeNET'
HTTPSConnectionPool(host='forums.roguetemple.com', port=443): Max retries exceeded with url: /irldb/comment.php?id=TomeNET (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://bapse.com/videos/tomenet ...'
b' |MSG| Scraping https://inconsolation.wordpress.com/2014/11/26/tomenet-out-of-the-console-and-onto-the-internet/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.mmorpg.com/discussion/472519/tomenet-rogue-like-multiplayer-online-game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://no-clip.com/video/spspE5YUoos/tomenet-tutorial-1-setting-up-your-own-server.html ...'
b' |MSG| Scraping https://www.thefullwiki.org/ToME_(computer_game) ...'
b' |MSG| Found article'
b' |MSG| Written to corpus-1.json'
In [180]:
# For Roguelike-like games, we build a corpus with Wikipedia and DuckDuckGo
# corpus = read_json('corpus-roguelike-like.json')
# if not corpus:
corpus = []
for index, roguelike in roguelikelikes.iterrows():
print(roguelike)
title = roguelike['Name']
text = []
page = scrape_wiki(title)
if page:
text.append(page.content)
developers = str(roguelike['Developer']).replace(',', ' OR ')
links = scrape_duckduckgo(title, developers)
for link in links[:20]:
if 'roguebasin.roguelikedevelopment.org' in link \
or 'roguebasin.com' in link \
or 'wikipedia' in link:
continue
content = scrape(link, title)
if content:
text.append(content)
corpus.append({"title": title, "text": text})
save_json('corpus-roguelike-like.json', corpus)
Name ToeJam & Earl
Released 1991
Updated NaN
Developer Johnson Voorsanger Productions
Theme Fantasy
Influences NaN
Name: 0, dtype: object
http://duckduckgo.com/html/?q=%22ToeJam%20%26%20Earl%22%20AND%20Johnson%20Voorsanger%20Productions%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://gaming.wikia.com/wiki/ToeJam_%26_Earl_Productions ...'
b' |MSG| Found article'
b' |MSG| Scraping http://lastdaydeaf.com/toejam-earldev-johnson-voorsanger-productions-sega-genesis-1991/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://toejamandearl.wikia.com/wiki/ToeJam_%26_Earl_in_Panic_on_Funkotron ...'
b' |MSG| Found article'
b' |MSG| Scraping https://segaretro.org/ToeJam_%26_Earl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/pages/ToeJam-Earl-Productions/109640125728425 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/reviews/2007/06/toejam_and_earl_in_panic_on_funkotron_virtual_console ...'
b' |MSG| Found article'
b' |MSG| Scraping http://awesome-games.wikia.com/wiki/Toejam_And_Earl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=7beFz0Jm0GI ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gaming.wikia.com/wiki/ToeJam_%26_Earl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://venturebeat.com/2018/06/20/the-retrobeat-toejam-earl-in-panic-on-funkotron-deserves-more-respect/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://segaretro.org/ToeJam_%26_Earl_in_Panic_on_Funkotron ...'
b' |MSG| Found article'
b' |MSG| Scraping https://zeexlash.wordpress.com/2018/05/04/review-toejam-earl-c/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamesdatabase.org/game/sega-genesis/toejam-and-earl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.giantbomb.com/toejam-and-earl/3030-13306/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/reviews/2006/12/toejam_and_earl_virtual_console ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.retrogamer.net/retro_games90/toejam-and-earl-in-panic-on-funkotron/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.myabandonware.com/game/toejam-earl-826 ...'
Name Diablo
Released 1996
Updated NaN
Developer Blizzard North
Theme Fantasy
Influences NaN
Name: 1, dtype: object
/usr/local/lib/python3.6/site-packages/bs4/__init__.py:181: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.
The code that caused this warning is on line 193 of the file /usr/local/Cellar/python/3.6.5/Frameworks/Python.framework/Versions/3.6/lib/python3.6/runpy.py. To get rid of this warning, change code that looks like this:
BeautifulSoup(YOUR_MARKUP})
to this:
BeautifulSoup(YOUR_MARKUP, "lxml")
markup_type=markup_type))
http://duckduckgo.com/html/?q=%22Diablo%22%20AND%20Blizzard%20North%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=VscdPA6sUkc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://us.battle.net/forums/en/d3/topic/7415795753 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://idclips.com/rev/blizzard+diablo/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/diablo-designer-david-breviks-full-gdc-post-mortem-is-now-online/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.diablowiki.net/Blizzard_North ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.diabloii.net/blog/comments/diablo-3-post-mortem-jay-wilson-pt1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ltclip.com/rev/diablo+blizzard/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/view/feature/131533/postmortem_blizzards_diablo_ii.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.digitaltrends.com/gaming/blizzard-multiple-diablo-projects/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://topasnew.club/6645-diablo-1996-istoriya-sozdaniya-igry-sozdanie-blizzard-north.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/articles/new-diablo-game-project-in-development-blizzard-co/1100-6459406/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://diablo.wikia.com/wiki/Blizzard_North ...'
b' |MSG| Found article'
b' |MSG| Scraping https://diablo.gamepedia.com/Blizzard_North ...'
b' |MSG| Found article'
b' |MSG| Scraping https://screenrant.com/blizzard-multiple-diablo-projects/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesradar.com/stay-awhile-and-listen-tell-story-blizzard-north-and-making-diablo/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forum.terratechgame.com/index.php?threads/blizzard-north-post-mortem.13348/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.engadget.com/2018/08/08/blizzard-teases-more-diablo/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usgamer.net/articles/stay-awhile-and-listen-book-2-blizzard-north-diablo-2-book-excerpt ...'
b' |MSG| Found article'
b' |MSG| Scraping https://slclip.com/rev/diablo+game/ ...'
b' |MSG| Found article'
Name Diablo II
Released 2000
Updated NaN
Developer Blizzard Entertainment
Theme Fantasy
Influences NaN
Name: 2, dtype: object
http://duckduckgo.com/html/?q=%22Diablo%20II%22%20AND%20Blizzard%20Entertainment%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.oldpcgaming.net/early-history-of-blizzard-entertainment/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://diablo.gamepedia.com/Blizzard_Entertainment ...'
b' |MSG| Found article'
b' |MSG| Scraping https://careers.blizzard.com/en-us/openings/oNiH7fwD ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/blizzard-new-game-diablo-4 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://eu.diablo3.com/en/game/anniversary/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usgamer.net/articles/stay-awhile-and-listen-book-2-blizzard-north-diablo-2-book-excerpt ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ranker.com/review/diablo-ii/852010 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://us.battle.net/support/en/article/34726 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://diablo.wikia.com/wiki/Blizzard_Entertainment ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/the-diablo-games-and-expansions-ranked-from-worst-to-best/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.diabloii.net/blog/comments/pc-gamer-on-diablo-iii-and-blizzard ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/diablo-ii-review/1900-2600303/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamebyte.com/blizzard-has-confirmed-a-new-diablo-game-is-coming/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://diablo.blizzplanet.com/blog/comments/job-opening-reveals-warcraft-iii-diablo-ii-remastered ...'
b' |MSG| Found article'
b' |MSG| Scraping http://arquivo.pt/wayback/20090712024513/http://www.blizzard.com/us/diablo2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamepressure.com/e.asp?ID=583 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.svg.com/114578/blizzard-wont-release-diablo-4/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/Diablo.eu/about/?ref=page_internal ...'
Name Lost Labyrinth
Released 2001
Updated 2011
Developer Lost Labyrinth
Theme Fantasy
Influences NaN
Name: 3, dtype: object
b'??WARN?? Search term "Lost Labyrinth" returned nothing'
http://duckduckgo.com/html/?q=%22Lost%20Labyrinth%22%20AND%20Lost%20Labyrinth%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.lostlabyrinth.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://lgames.info/match-3/the-lost-labyrinth.html ...'
b' |MSG| Scraping https://store.steampowered.com/app/420920/Lost_Labyrinth_Extended_Version/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=oIdUxzVQtwE ...'
b' |MSG| Found article'
b' |MSG| Scraping https://yepdownload.com/lost-labyrinth ...'
b'!!FAIL!! Failed to load https://yepdownload.com/lost-labyrinth'
HTTPSConnectionPool(host='yepdownload.com', port=443): Max retries exceeded with url: /lost-labyrinth (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping https://game-owl.com/the-lost-labyrinth/ ...'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=869911254 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lotro-wiki.com/index.php/Quest:The_Lost_Pages ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.doublegames.ru/the-lost-labyrinth.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.addictinggames9.com/match,3_games/the-lost-labyrinth/ ...'
b' |MSG| Scraping http://www.lostandfound.com.au/report-lost-item ...'
b' |MSG| Scraping https://www.facebook.com/groups/LostAndFoundBirdsPerth/ ...'
b' |MSG| Scraping http://runescape.wikia.com/wiki/Lost_and_Found ...'
b' |MSG| Found article'
b' |MSG| Scraping https://guides.gamepressure.com/tormenttidesofnumenera/guide.asp?ID=36803 ...'
b' |MSG| Scraping https://www.destructoid.com/review-lost-sphear-483901.phtml ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.malavida.com/en/soft/lost-labyrinth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamerant.com/lost-sea-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.lostandfoundbrewery.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://music.yandex.ru/album/1270442 ...'
b' |MSG| Found article'
Name Strange Adventures In Infinite Space
Released 2002
Updated 2004
Developer Rich Carlson, Iikka Keränen
Theme Space science fiction
Influences NaN
Name: 4, dtype: object
http://duckduckgo.com/html/?q=%22Strange%20Adventures%20In%20Infinite%20Space%22%20AND%20Rich%20Carlson%20OR%20%20Iikka%20Ker%C3%A4nen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=VGLMAtMCFp4 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.infinitespacegames.com/sais/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/blogs/JohnHarris/20160321/268520/Play_85_A_Talk_with_Digital_Eel_Makers_of_the_Infinite_Space_Games.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://strange-adventures-in-infinite-space.en.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.g4g.it/2009/10/01/strange-adventures-in-infinite-space/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamezebo.com/2010/11/18/strange-adventures-infinite-space-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/strange-adventures-in-infinite-space-review/1900-2856375/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.myabandonware.com/game/strange-adventures-in-infinite-space-3qy ...'
b' |MSG| Scraping http://igrotop.com/games/strange_adventures_in_infinite_space/info ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.game-ost.ru/games/6212/strange_adventures_in_infinite_space/meta/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://wiki2.org/en/Strange_Adventures_in_Infinite_Space ...'
b' |MSG| Found article'
b' |MSG| Scraping http://vikimy.com/l-en/Strange_Adventures_In_Infinite_Space ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.digital-eel.com/sais/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.puppygames.net/blog/?p=18 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.statemaster.com/encyclopedia/Strange-Adventures-In-Infinite-Space ...'
b' |MSG| Found article'
b' |MSG| Scraping https://UpClosed.com/people/iikka-keraenen/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2009/10/07/strange-adventures-in-infinite-space-free/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://sf-encyclopedia.com/entry/strange_adventures_in_infinite_space ...'
b' |MSG| Found article'
Name Weird Worlds: Return to Infinite Space
Released 2005
Updated 2014
Developer Rich Carlson, Iikka Keränen
Theme Space science fiction
Influences NaN
Name: 5, dtype: object
http://duckduckgo.com/html/?q=%22Weird%20Worlds%3A%20Return%20to%20Infinite%20Space%22%20AND%20Rich%20Carlson%20OR%20%20Iikka%20Ker%C3%A4nen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.facebook.com/WeirdWorldsReturnToInfiniteSpace ...'
b' |MSG| Scraping https://www.imdb.com/title/tt1323932/fullcredits ...'
b' |MSG| Found article'
b' |MSG| Scraping http://doom.wikia.com/wiki/List_of_notable_WADs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://onemandoom.blogspot.com/p/index-of-reviews.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://doomwiki.org/wiki/Requiem ...'
b' |MSG| Scraping https://doomwiki.org/wiki/Hacx ...'
b' |MSG| Scraping http://doom.wikia.com/wiki/Requiem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://counterstrike.wikia.com/wiki/Counter-Strike ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/698100/Protagon_VR/ ...'
b' |MSG| Scraping http://counterstrike.wikia.com/wiki/Canals ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quaddicted.com/reviews/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/filmosearch?role=nm0876724&sort=year ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nexusmods.com/skyrimspecialedition/mods/12244?tab=description ...'
b' |MSG| Found article'
b' |MSG| Scraping http://digital-eel.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://issuu.com/henrico7/docs/fall_program_guide_2018 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.doomworld.com/10years/bestwads/1996.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamecrafter.com/games/infinite-space-explorers1 ...'
b' |MSG| Found article'
Name Spelunky
Released 2009
Updated 2012
Developer Derek Yu, Andy Hull
Theme Fantasy
Influences NaN
Name: 6, dtype: object
http://duckduckgo.com/html/?q=%22Spelunky%22%20AND%20Derek%20Yu%20OR%20%20Andy%20Hull%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://kupdf.net/download/spelunky-derek-yupdf_59603950dc0d60dd012be30c_pdf ...'
b' |MSG| Scraping https://spelunkyworld.com/info.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.goodreads.com/book/show/26152638-spelunky ...'
b' |MSG| Found article'
b' |MSG| Scraping https://brclip.com/rev/derek+yu/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=RiDy6CgBKqs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://derpycalamity.wordpress.com/2016/03/23/spelunky-by-derek-yu-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamereactor.eu/articles/5997/Interview+Derek+Yu/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://se7en.ws/derek-yu-on-the-state-of-indie-and-his-new-book-about-spelunky/?lang=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/storyfort ...'
b' |MSG| Found article'
b' |MSG| Scraping http://makegames.tumblr.com/post/4061040007/the-full-spelunky-on-spelunky ...'
b' |MSG| Found article'
b' |MSG| Scraping http://tig.wikia.com/wiki/Spelunky ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamecritics.com/brandon-bales/state-of-play-with-brandon-bales-derek-yu-and-andy-hull-full-interview/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamehackstudios.com/spelunky-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/TheMakingOfGames/wiki/index ...'
b' |MSG| Scraping http://readyset.zam.com/article/289/spelunky-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://usclip.net/rev/derek+yu+video+game+developer/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.derekyu.com/games.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2018/06/08/spelunky-2-details/ ...'
b' |MSG| Found article'
Name The Binding of Isaac
Released 2011
Updated NaN
Developer Edmund McMillen, Florian Himsl
Theme Surrealistic, horror
Influences NaN
Name: 7, dtype: object
http://duckduckgo.com/html/?q=%22The%20Binding%20of%20Isaac%22%20AND%20Edmund%20McMillen%20OR%20%20Florian%20Himsl%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://mytorrent.xyz/the-binding-of-isaac/ ...'
b' |MSG| Scraping https://twitter.com/edmundmcmillen ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bindingofisaac.wikia.com/wiki/Edmund_McMillen ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=f_OtRH5Kr64 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/81096 ...'
b' |MSG| Scraping https://www.pcgamer.com/how-mods-made-the-binding-of-isaac-a-phenomenon-and-why-edmund-mcmillens-laying-it-to-rest/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/action/the-binding-of-isaac/sales ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.shouldiremoveit.com/The-Binding-of-Isaac-72351-program.aspx ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamerkong.com/games/action/the-binding-of-isaac ...'
b' |MSG| Found article'
b' |MSG| Scraping https://levelskip.com/action-adventure/The-Binding-of-Isaac-Video-Game-Plotline-Analysis-Theories-and-Interpretations ...'
b' |MSG| Found article'
b' |MSG| Scraping https://killscreen.com/articles/binding-isaac/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://streamers.gamepedia.com/The_Binding_of_Isaac ...'
b' |MSG| Found article'
b' |MSG| Scraping http://vanila.org/viewtopic.php?t=792835 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alternativeto.net/software/the-binding-of-isaac/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://therutor.org/torrent/432207/the-binding-of-isaac-v1.0r10-2011-pc/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://Torrent-Games.net/news/the_binding_of_isaac_edmund_mcmillen_eng/2011-09-29-20262 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bestgamer.net/load/3125-the-binding-of-isaac-edmund-mcmillen-eng-p.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tcrf.net/The_Binding_of_Isaac ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/workshop/filedetails/?id=895960454 ...'
b' |MSG| Found article'
Name FTL: Faster Than Light
Released 2012
Updated NaN
Developer Subset Games
Theme Space science fiction
Influences NaN
Name: 8, dtype: object
http://duckduckgo.com/html/?q=%22FTL%3A%20Faster%20Than%20Light%22%20AND%20Subset%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://gaming.wikia.com/wiki/FTL:_Faster_Than_Light ...'
b' |MSG| Found article'
b' |MSG| Scraping https://speed-new.com/ftl-faster-than-light-full-pc-game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://subsetgames.com/faq.html ...'
b' |MSG| Scraping https://www.pcgamer.com/ftl-faster-than-light-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/indie/ftl-faster-than-light ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgame.com/ftl-faster-than-light ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fullgamesforpc.com/ftl-faster-than-light-download-pc ...'
b' |MSG| Found article'
b' |MSG| Scraping http://indiegames.download/games/indie/ftl-faster-than-light ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/ftl-faster-than-light/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/ftl-faster-than-light/review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://indiegamereviewer.com/review-ftl-faster-than-light/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/212680/FTL_Faster_Than_Light/ ...'
b' |MSG| Scraping http://speedydeletion.wikia.com/wiki/FTL:_Faster_Than_Light ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamerant.com/ftl-faster-than-light-reviews/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.fpgtorrents.net/ftl-faster-light-pc-game-repack/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gameskinny.com/games/ftl-faster-than-light/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ftl.wikia.com/wiki/FTL:_Faster_Than_Light_Wiki ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/ftl-faster-than-light/reviews/ ...'
Name Diablo III
Released 2012
Updated NaN
Developer Blizzard Entertainment
Theme Fantasy
Influences NaN
Name: 9, dtype: object
http://duckduckgo.com/html/?q=%22Diablo%20III%22%20AND%20Blizzard%20Entertainment%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://us.battle.net/forums/en/d3/topic/20759227193 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.oldpcgaming.net/early-history-of-blizzard-entertainment/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://eu.blizzard.com/us/games/d3/ ...'
b' |MSG| Scraping https://diablo.gamepedia.com/Blizzard_Entertainment ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.critical-reviews.com/diablo-iii/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.diabloii.net/blog/comments/pc-gamer-on-diablo-iii-and-blizzard ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/diablo-4/diablo-4-blizzcon-2018 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/diablo-iii/diablo-3-diablo-1-remake-anniversary-event ...'
b' |MSG| Found article'
b' |MSG| Scraping https://eu.diablo3.com/en/game/anniversary/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kotaku.com/how-blizzard-saved-diablo-iii-from-disaster-1797427650 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://everipedia.org/wiki/Diablo_III/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.videogamer.com/reviews/diablo-iii-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=dK5dv0dXP7A ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ranker.com/review/diablo-iii/42218824 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.svg.com/114578/blizzard-wont-release-diablo-4/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.microsoft.com/en-au/p/diablo-iii-eternal-collection/bz84xlqbrhtg ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.windowscentral.com/diablo-iii-necromancer-dlc-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.slant.co/topics/11549/viewpoints/2/~blizzard-entertainment-games~diablo-iii ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kotaku.com.au/2017/08/how-blizzard-saved-diablo-3-from-disaster/ ...'
b' |MSG| Found article'
Name Don't Starve
Released 2013
Updated NaN
Developer Klei Entertainment
Theme Fantasy
Influences NaN
Name: 10, dtype: object
http://duckduckgo.com/html/?q=%22Don%27t%20Starve%22%20AND%20Klei%20Entertainment%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://indiegamereviewer.com/review-dont-starve-klei-entertainment-delivers-a-feast/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.kleientertainment.doNotStarveShipwrecked&hl=en_US ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/games/dont-starve ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/reviews/switch-eshop/donrt_starve_nintendo_switch_edition ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/712640/Dont_Starve_Hamlet/ ...'
b' |MSG| Scraping https://www.pcgame.com/dont-starve ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.kleientertainment.com/forums/topic/92386-game-update-274406/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dontstarve.wikia.com/wiki/Don%27t_Starve ...'
b' |MSG| Found article'
b' |MSG| Scraping http://adventuregamer.pro/games/adventure/dont-starve-together ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nintendo.com/games/detail/dont-starve-nintendo-switch-edition ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamerkong.com/games/adventure/dont-starve ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/bundle/312/Dont_Starve_MEGA_PACK/ ...'
b' |MSG| Scraping https://forums.kleientertainment.com/topic/91519-coming-soon-the-gorge/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metacritic.com/game/pc/dont-starve-together ...'
b' |MSG| Scraping http://dontstarve.wikia.com/wiki/The_Quagmire ...'
b' |MSG| Found article'
b' |MSG| Scraping https://metro.co.uk/2018/04/16/dont-starve-nintendo-switch-edition-review-hungry-7471794/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/adventure/dont-starve ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=h3u12syot3Q ...'
b' |MSG| Found article'
Name Rogue Legacy
Released 2013
Updated NaN
Developer Cellar Door Games
Theme Fantasy
Influences NaN
Name: 11, dtype: object
http://duckduckgo.com/html/?q=%22Rogue%20Legacy%22%20AND%20Cellar%20Door%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://cellardoorgames.com/rogue-legacy-design-notes/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/video/241600 ...'
b' |MSG| Scraping https://store.steampowered.com/developer/cellardoorgames/ ...'
b' |MSG| Scraping https://gamefront.online/rogue-legacy-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/241600/discussions/0/1726450077692743815/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://roguelegacy.gamepedia.com/Cellar_Door_Games ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usgamer.net/articles/rogue-legacy-review ...'
b' |MSG| Scraping https://jayisgames.com/review/rogue-legacy.php ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamingdebugged.com/2013/04/18/interview-cellar-door-games-creators-of-rogue-legacy/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gbatemp.net/review/rogue-legacy.166/ ...'
b' |MSG| Scraping https://www.windowscentral.com/rogue-legacy-review ...'
b' |MSG| Found article'
b' |MSG| Scraping http://iamericm.com/2014/07/rogue-legacy-indie-game-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moregameslike.com/rogue-legacy/android/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/rogue-legacy/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/CellarDoorGames/ ...'
b' |MSG| Scraping https://www.pcgamesn.com/rogue-legacy-pc-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.fraghero.com/rouge-legacy-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/cellardoorgames ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=apfNODay1_s ...'
b' |MSG| Found article'
Name Risk of Rain
Released 2013
Updated NaN
Developer Hopoo Games
Theme Sci-fi action
Influences NaN
Name: 12, dtype: object
http://duckduckgo.com/html/?q=%22Risk%20of%20Rain%22%20AND%20Hopoo%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://riskofraingame.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://hopooo.tumblr.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/review/risk-of-rain.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/action/risk-of-rain-11613 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/video/248820 ...'
b' |MSG| Scraping https://goggames.goodolddownloads.com/game/risk_of_rain ...'
b' |MSG| Scraping https://www.gameskinny.com/w3put/interview-with-christopher-ekins-of-indie-shmup-risk-system ...'
b' |MSG| Found article'
b' |MSG| Scraping http://freegogpcgames.com/1187/risk-of-rain/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moregameslike.com/risk-of-rain/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usgamer.net/articles/cult-indie-game-risk-of-rain-is-getting-a-3d-sequel ...'
b' |MSG| Found article'
b' |MSG| Scraping http://vanila.org/viewtopic.php?t=792947 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/248820/discussions/0/613940477648575526/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.polygon.com/2013/12/24/5241358/risk-of-rain-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/pages/biz/video_games/525116000841801/ ...'
b' |MSG| Scraping https://www.pcgamer.com/we-finally-get-our-first-look-at-risk-of-rain-2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.igdb.com/games/risk-of-rain ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gog.com/game/risk_of_rain ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kickstarter.com/projects/riskofrain/risk-of-rain ...'
b' |MSG| Found article'
b' |MSG| Scraping http://riskofrain.wikia.com/wiki/Category:Gameplay ...'
b' |MSG| Found article'
Name Not the Robots
Released 2013
Updated NaN
Developer 2DArray
Theme Sci-fi action
Influences NaN
Name: 13, dtype: object
b'??WARN?? Search term "Not the Robots" returned nothing'
http://duckduckgo.com/html/?q=%22Not%20the%20Robots%22%20AND%202DArray%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://2darray.itch.io/not-the-robots ...'
b' |MSG| Scraping https://store.steampowered.com/video/257120 ...'
b' |MSG| Scraping https://dontfeedthegamers.com/not-robots-full-game-review-video/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/action/not-the-robots ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/not-the-robots ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ru-ru.facebook.com/nottherobots ...'
b' |MSG| Scraping https://lutris.net/games/not-the-robots/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamerinfo.net/game/not-the-robots/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://lgdb.org/game/not-the-robots ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=413656864 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/nottherobots ...'
b' |MSG| Scraping https://www.50gameslike.com/games-like/not-the-robots ...'
b' |MSG| Found article'
b' |MSG| Scraping http://nomorerobots.io/ ...'
b' |MSG| Scraping https://www.fanatical.com/en/game/not-the-robots ...'
b' |MSG| Scraping http://small-games.info/?go=game&c=8&i=12437 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=TEDU3wsHzoY ...'
b' |MSG| Found article'
b' |MSG| Scraping https://warrobots.net/en/posts/210 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://steamtradingcards.wikia.com/wiki/Not_The_Robots ...'
b' |MSG| Found article'
b' |MSG| Scraping http://2darray.net/ ...'
b' |MSG| Found article'
Name TowerClimb
Released 2013
Updated 2015
Developer Davioware & Quazi
Theme Fantasy action
Influences NaN
Name: 14, dtype: object
b'??WARN?? Search term "TowerClimb" returned nothing'
http://duckduckgo.com/html/?q=%22TowerClimb%22%20AND%20Davioware%20%26%20Quazi%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://store.steampowered.com/app/396640/TowerClimb/ ...'
b' |MSG| Scraping http://davioware.com/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=EVdEhWWo3Cc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/davioware ...'
b' |MSG| Found article'
b' |MSG| Scraping https://thexvid.com/video/EVdEhWWo3Cc/towerclimb-by-davioware-and-quazi-pc-gameplay.html ...'
b' |MSG| Scraping http://www.metacritic.com/game/pc/towerclimb ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamerkong.com/games/action/towerclimb ...'
b' |MSG| Found article'
b' |MSG| Scraping http://towerclimb.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.steamkiwi.com/developer=Davioware%20and%20Quazi ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gameseira.com/games/action/towerclimb ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/towerclimb.html ...'
b' |MSG| Scraping http://fragrun.com/games/action/towerclimb ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fireside.gamejolt.com/post/towerclimb-7jac79nw ...'
b' |MSG| Scraping https://gamefaqs.gamespot.com/company/188323-davioware-and-quazi ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamemonitoring.net/en/games/towerclimb ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nicoblog.org/pc-games/towerclimb-usa/ ...'
b' |MSG| Scraping http://gamesystemrequirements.com/company/davioware-and-quazi ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/towerclimb ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamspy.com/dev/Davioware+and+Quazi ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamin.me/developers/davioware-and-quazi ...'
b' |MSG| Found article'
Name 99 Levels to Hell
Released 2013
Updated NaN
Developer ZaxisGames
Theme Fantasy action
Influences NaN
Name: 15, dtype: object
http://duckduckgo.com/html/?q=%2299%20Levels%20to%20Hell%22%20AND%20ZaxisGames%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://store.steampowered.com/video/264280 ...'
b' |MSG| Scraping http://gameverse.com/2013/03/22/99-levels-to-hell-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://indiegamereviewer.com/review-99-levels-to-hell-an-indie-roguelike-like/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/action/99-levels-to-hell ...'
b' |MSG| Found article'
b' |MSG| Scraping https://toucharcade.com/2018/08/10/arena-of-valor-news-idol-liliana-map-overhauls-and-a-new-hero/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://ru-ru.facebook.com/99levelstohell/posts/?ref=page_internal ...'
b' |MSG| Scraping http://gamestorrent.co/99-levels-to-hell-prophet.html ...'
b' |MSG| Scraping https://kyojim.com/99-levels-hell-prophet/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gogwiki.com/wiki/99_Levels_to_Hell ...'
b' |MSG| Found article'
b' |MSG| Scraping https://zaxisgames.blogspot.com/2012/09/99-levels-to-hell-enters-steam.html ...'
b' |MSG| Scraping http://gaming.wikia.com/wiki/99_Levels_To_Hell ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eurogamer.net/articles/2013-03-06-99-levels-to-hell-review ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.softpedia.com/reviews/games/linux/99-Levels-to-Hell-Review-429821.shtml ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/99-levels-to-hell/review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/sharedfiles/filedetails/?id=92942433 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=6C7juJdLvRU ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/99levelstohell/posts ...'
b' |MSG| Scraping https://www.hardcoregamer.com/2013/02/26/review-99-levels-to-hell/31457/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.50gameslike.com/games-like/99-levels-to-hell/ps4 ...'
b' |MSG| Found article'
Name Delver
Released 2013
Updated NaN
Developer Priority Interrupt
Theme Fantasy
Influences NaN
Name: 16, dtype: object
b'??WARN?? Wikipedia cannot find "Delver_(video_game)"'
http://duckduckgo.com/html/?q=%22Delver%22%20AND%20Priority%20Interrupt%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://store.steampowered.com/app/249630/Delver/ ...'
b' |MSG| Scraping http://www.delvergame.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/post-mortem-review/1900-2911836/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.online-games.co/video/watch.php?vid=3153d3158 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=BqwVGXtUXds ...'
b' |MSG| Scraping https://www.moddb.com/company/priority-interrupt ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamerkong.com/games/action/delver ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/delver.html ...'
b' |MSG| Scraping https://gamesmojo.com/games/action/delver ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesparks.com/blog/gdc-and-game-connection-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamedevelopment.tutsplus.com/articles/15-analyses-post-mortems-and-game-design-docs--gamedev-11554 ...'
b' |MSG| Scraping http://small-games.info/?go=game&c=3&i=10949 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://thetorchentertainmentguide.com/atomp-delver-priority-interrupt-preview/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/company/priority-interrupt/games ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorming.com/pre-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://sameapk.com/delver/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/delver/review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://adventuregamers.com/articles/view/17557 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://android-apps-hub.blogspot.com/2013/07/delver-v07c-priority-interrupt.html ...'
b' |MSG| Found article'
Name Tower of Guns
Released 2014
Updated NaN
Developer Terrible Posture Games
Theme Science fiction
Influences NaN
Name: 17, dtype: object
http://duckduckgo.com/html/?q=%22Tower%20of%20Guns%22%20AND%20Terrible%20Posture%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.indiedb.com/games/tower-of-guns/images/tower-of-guns-and-terrible-posture-games1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.towerofguns.com/presskit/sheet.php?p=Tower_of_Guns ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/video/266110 ...'
b' |MSG| Scraping http://gamess.org/tower-of-guns-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcinvasion.com/tower-guns-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamereactor.eu/reviews/111504/Tower+of+Guns/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamer.com/fortnite-rip-off-pubg/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://articles.gamerheadquarters.com/interview13towerofguns.html ...'
b' |MSG| Scraping https://www.usgamer.net/articles/tower-of-guns-ps4-review- ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamecrate.com/reviews/review-tower-guns-reloads-nostalgia/10549 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://vanila.org/viewtopic.php?t=792905 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/games/tower-of-guns ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.irishtimes.com/culture/games/game-reviews/tower-of-guns-game-review-1.2182637 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamingbolt.com/tower-of-guns-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/tower-of-guns-review/1900-6416118/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=NnxkwSiRY3I ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gog.com/game/tower_of_guns ...'
b' |MSG| Found article'
b' |MSG| Scraping http://rustorka.com/forum/viewtopic.php?t=161422 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamersdecide.com/pc-games/tower-guns ...'
b' |MSG| Found article'
Name Crypt of the Necrodancer
Released 2014
Updated NaN
Developer Brace Yourself Games
Theme Fantasy
Influences NaN
Name: 18, dtype: object
http://duckduckgo.com/html/?q=%22Crypt%20of%20the%20Necrodancer%22%20AND%20Brace%20Yourself%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.youtube.com/watch?v=rOX9QTWXtAc ...'
b' |MSG| Found article'
b' |MSG| Scraping http://crypt-of-the-necrodancer.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/CryptOfTheNecroDancer/ ...'
b' |MSG| Scraping https://store.steampowered.com/developer/braceyourselfgames/ ...'
b' |MSG| Scraping http://braceyourselfgames.com/forums/ ...'
b' |MSG| Scraping http://necrodancer.com/presskit/sheet.php?p=crypt_of_the_necrodancer ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/crypt-of-the-necrodancer-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.destructoid.com/review-crypt-of-the-necrodancer-291156.phtml ...'
b' |MSG| Found article'
b' |MSG| Scraping https://jayisgames.com/review/coming-soon-crypt-of-the-necrodancer.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usgamer.net/articles/crypt-of-the-necrodancer-ps4ps-vita-review ...'
b' |MSG| Found article'
b' |MSG| Scraping http://RuTracker.org/forum/viewtopic.php?t=5358446 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamerevolution.com/review/67605-crypt-of-the-necrodancer-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/games/247080/announcements/detail/611738382089044545 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.softpedia.com/reviews/games/pc/Crypt-of-the-Necrodancer-Review-479596.shtml ...'
b' |MSG| Found article'
b' |MSG| Scraping http://oceanofgames.com/crypt-of-the-necrodancer-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.microsoft.com/en-us/p/crypt-of-the-necrodancer/bzhl37cpgp4x ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/crypt-of-the-necrodancer/crypt-of-the-necrodancer-s-new-boss-is-an-entire-band-of-enemies ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/games/crypt-of-the-necrodancer ...'
b' |MSG| Found article'
b' |MSG| Scraping http://torrentsgames.net/macintosh/crypt-of-the-necrodancer-macintosh.html ...'
b' |MSG| Found article'
Name Invisible, Inc.
Released 2014
Updated NaN
Developer Klei Entertainment
Theme Espionage
Influences NaN
Name: 19, dtype: object
http://duckduckgo.com/html/?q=%22Invisible%2C%20Inc.%22%20AND%20Klei%20Entertainment%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.kleientertainment.com/games/invisible-inc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forums.kleientertainment.com/forums/forum/41-invisible-inc-general-discussion-and-strategies/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/developer/klei ...'
b' |MSG| Scraping https://jayisgames.com/review/invisible-inc.php ...'
b' |MSG| Scraping https://steamcommunity.com/app/243970/discussions/0/35221584561936351/?l=french ...'
b' |MSG| Found article'
b' |MSG| Scraping https://kotaku.com/invisible-inc-the-kotaku-review-1703519658 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.slantmagazine.com/games/review/invisible-inc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2015/05/12/invisible-inc-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/invisible-inc-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamepressure.com/e.asp?ID=117 ...'
b' |MSG| Scraping https://killscreen.com/articles/invisible-inc-and-brutality-stealth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pockettactics.com/reviews/review-invisible-inc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamegrin.com/reviews/invisible-inc.-contingency-plan-dlc-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gog.com/game/invisible_inc ...'
b' |MSG| Found article'
b' |MSG| Scraping http://freegogpcgames.com/985/invisible-inc/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.commonsensemedia.org/game-reviews/invisible-inc ...'
b' |MSG| Scraping https://www.gamepedia.com/tag/invisible ...'
b' |MSG| Scraping https://linuxtor.org/111-invisible-inc.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/invisible-inc ...'
b' |MSG| Found article'
Name TinyKeep
Released 2014
Updated NaN
Developer Phigames
Theme Fantasy
Influences NaN
Name: 20, dtype: object
b'??WARN?? Search term "TinyKeep" returned nothing'
http://duckduckgo.com/html/?q=%22TinyKeep%22%20AND%20Phigames%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.gamespot.com/reviews/post-mortem-review/1900-2911836/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=J0fnYSMoaqI ...'
b' |MSG| Found article'
b' |MSG| Scraping https://tinykeep.com/Phi_Dinh_Games_Developer_CV.pdf ...'
b'!!FAIL!! Failed to load https://tinykeep.com/Phi_Dinh_Games_Developer_CV.pdf'
HTTPSConnectionPool(host='tinykeep.com', port=443): Max retries exceeded with url: /Phi_Dinh_Games_Developer_CV.pdf (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://thegg.net/reviews/tinykeep-pc-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/mortem.html ...'
b' |MSG| Scraping http://en.riotpixels.com/games/tinykeep/scores/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://blog.tinykeep.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/mortem/223601 ...'
b' |MSG| Scraping https://store.steampowered.com/video/278620? ...'
b' |MSG| Scraping https://adventuregamers.com/articles/view/17557 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://shshatteredmemories.com/greenvale/game-developer-magazine-post-mortem-article/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nighthoodgames.itch.io/mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesparks.com/blog/gdc-and-game-connection-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorming.com/pre-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://manishearth.github.io/blog/2015/05/28/github-streak-end-game-and-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/Tinykeep/?ref=py_c ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=oIRSOA-8Eng ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/action/tinykeep ...'
b' |MSG| Found article'
b' |MSG| Scraping http://Torrent-Games.net/news/tinykeep_phigames_eng_p/2014-10-08-43568 ...'
b' |MSG| Found article'
Name Dungeon of the Endless
Released 2014
Updated NaN
Developer Amplitude Studios
Theme Science fiction
Influences NaN
Name: 21, dtype: object
http://duckduckgo.com/html/?q=%22Dungeon%20of%20the%20Endless%22%20AND%20Amplitude%20Studios%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.keengamer.com/Articles/View/13176 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.usgamer.net/articles/dungeon-of-the-endless-pc-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/744930/Dungeon_of_the_Endless__Digital_Artbook/ ...'
b' |MSG| Scraping https://dungeonoftheendless.gamepedia.com/Dungeon_Of_The_Endless_Wiki:Copyrights ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/dungeonoftheendless/?ref=page_internal ...'
b' |MSG| Scraping https://www.pcgamer.com/dungeon-of-the-endless-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://cramgaming.com/dungeon-of-the-endless-review-29636/ ...'
b' |MSG| Scraping http://www.readersgambit.com/dungeon-of-the-endless/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/249050/discussions/0/613948093880244457/?l=german ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamerevolution.com/review/65861-dungeon-of-the-endless-review ...'
b' |MSG| Scraping https://www.microsoft.com/en-au/p/dungeon-of-the-endless/bt56b4r21179 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamebillet.com/dungeon-of-the-endless ...'
b' |MSG| Found article'
b' |MSG| Scraping http://mytorrent.xyz/dungeon-of-the-endless/ ...'
b' |MSG| Scraping https://www.rockpapershotgun.com/tag/dungeon-of-the-endless/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/endless-legend ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alternativeto.net/software/dungeon-of-the-endless/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/games/dungeon-of-the-endless ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.topbestalternatives.com/dungeon-of-the-endless/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itunes.apple.com/ru/app/dungeon-of-the-endless/id893923668?mt=8 ...'
b' |MSG| Found article'
Name The Binding of Isaac: Rebirth
Released 2014
Updated NaN
Developer Nicalis
Theme Fantasy
Influences NaN
Name: 22, dtype: object
http://duckduckgo.com/html/?q=%22The%20Binding%20of%20Isaac%3A%20Rebirth%22%20AND%20Nicalis%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://gamesmojo.com/games/action/the-binding-of-isaac-rebirth ...'
b' |MSG| Found article'
b' |MSG| Scraping https://maddownload.com/games/rpg/the-binding-of-isaac-rebirth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/250900/The_Binding_of_Isaac_Rebirth/ ...'
b' |MSG| Scraping http://fragrun.com/games/action/the-binding-of-isaac-rebirth ...'
b' |MSG| Found article'
b' |MSG| Scraping http://playstationgamer.org/games/action/the-binding-of-isaac-rebirth-12262 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgame.com/the-binding-of-isaac-rebirth ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/action/the-binding-of-isaac-rebirth-18043 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamerkong.com/games/action/the-binding-of-isaac-rebirth ...'
b' |MSG| Found article'
b' |MSG| Scraping http://bindingofisaac.wikia.com/wiki/The_Binding_of_Isaac:_Rebirth ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.microsoft.com/en-us/p/the-binding-of-isaac-rebirth/bqd45pqr4f4j ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eurogamer.net/games/binding-isaac-rebirth ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/games/the-binding-of-isaac-rebirth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/the-binding-of-isaac-rebirth/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamestop.com/nintendo-3ds/games/the-binding-of-isaac-rebirth/150271 ...'
b' |MSG| Scraping https://speed-new.com/the-binding-of-isaac-rebirth-full-pc-game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.mobygames.com/game/wii-u/binding-of-isaac-rebirth ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamepressure.com/games/the-binding-of-isaac-rebirth/z034de ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamerkong.com/games/action/the-binding-of-isaac-rebirth-12262 ...'
b' |MSG| Found article'
Name Road Not Taken
Released 2014
Updated NaN
Developer Spry Fox
Theme Fantasy
Influences NaN
Name: 23, dtype: object
http://duckduckgo.com/html/?q=%22Road%20Not%20Taken%22%20AND%20Spry%20Fox%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://spryfox.com/our-games/road-not-taken/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://spryfox.com/2013/05/13/announcing-road-not-taken/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://en.softonic.com/articles/road-not-taken-a-deceptively-difficult-puzzle-game ...'
b' |MSG| Scraping http://gamewise.co/games/53029/Road-Not-Taken ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.afl.com.au/news/2018-08-10/tigers-not-taking-risks-with-sore-toby ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.dailymail.co.uk/news/article-6046663/Boy-climbs-escalator-handrail-falls-four-storeys-death-metres-away-parents.html ...'
b' |MSG| Scraping https://gamesmojo.com/games/puzzle/road-not-taken-12364 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.spryfox.roadnottaken&hl=ru ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pockettactics.com/reviews/review-road-not-taken/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://itunes.apple.com/us/app/road-not-taken/id1120861209?mt=8 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.rgamereview.com/game-reviews/road-not-taken-game-app ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/game/road-not-taken/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/293740/Road_Not_Taken/ ...'
b' |MSG| Scraping https://www.commonsensemedia.org/game-reviews/road-not-taken ...'
b' |MSG| Scraping https://blog.us.playstation.com/tag/road-not-taken/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/road-not-taken-review/1900-6415834/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://speed-new.com/road-not-taken-full-pc-game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gameskinny.com/91lmz/road-not-taken ...'
b' |MSG| Found article'
b' |MSG| Scraping https://4pda.ru/forum/index.php?showtopic=791058 ...'
b' |MSG| Found article'
Name Nuclear Throne
Released 2015
Updated NaN
Developer Vlambeer
Theme Post-apocalyptic
Influences NaN
Name: 24, dtype: object
http://duckduckgo.com/html/?q=%22Nuclear%20Throne%22%20AND%20Vlambeer%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://nuclearthrone.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/nuclear-throne-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.vlambeer.com/2016/08/announcement/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nuclearthrone.gamepedia.com/Vlambeer ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/242680/discussions/0/1696049513769195793/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.darkstation.com/reviews/nuclear-throne ...'
b' |MSG| Found article'
b' |MSG| Scraping https://stillnessinthestorm.com/2018/08/the-mystery-of-ancient-nuclear-war/ ...'
b' |MSG| Scraping https://www.youtube.com/watch?v=VFTL5T-6Cdc ...'
b' |MSG| Scraping https://www.rockpapershotgun.com/tag/nuclear-throne/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://yal.cc/nuclear-throne-u99/ ...'
b' |MSG| Scraping https://www.facebook.com/NuclearThroneGame ...'
b' |MSG| Scraping http://www.ign.com/videos/2015/12/16/nuclear-throne-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eurogamer.net/articles/2015-12-08-nuclear-throne-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/indie/vlambeer-selling-nuclear-throne-twitch-and-thinks-you-should-buy-it-there ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.commonsensemedia.org/game-reviews/nuclear-throne ...'
b' |MSG| Scraping http://nuclear-throne.wikia.com/wiki/Y.V%27s_Crib ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.techspot.com/products/pc-games/nuclear-throne.115185/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://alternativeto.net/software/nuclear-throne/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://zvis.com/nuclear/ ...'
b' |MSG| Found article'
Name Hand of Fate
Released 2015
Updated NaN
Developer Defiant Development
Theme Fantasy
Influences NaN
Name: 25, dtype: object
http://duckduckgo.com/html/?q=%22Hand%20of%20Fate%22%20AND%20Defiant%20Development%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://defiantdev.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/hand-of-fate-2-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://handoffateordeals.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metacritic.com/game/pc/hand-of-fate-2 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/456670/Hand_of_Fate_2/ ...'
b' |MSG| Scraping https://handoffate.gamepedia.com/Defiant_Development ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.finder.com.au/hand-of-fate-2-review ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/hand-of-fate-2-outlands-and-outsiders-update-v1-5-6-plaza.html ...'
b' |MSG| Scraping https://wccftech.com/review/hand-of-fate-2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://oceanofgames.com/hand-of-fate-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamespot.com/reviews/hand-of-fate-2-review/1900-6416814/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gog.com/game/hand_of_fate_2_outlands_and_outsiders ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamerevolution.com/review/67003-hand-of-fate-review ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/hand-of-fate-2-outlands-and-outsiders-plaza.html ...'
b' |MSG| Scraping https://www.pcpowerplay.com.au/review/hand-of-fate-2,477783 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://speed-new.com/hand-of-fate-full-pc-game ...'
b' |MSG| Found article'
b' |MSG| Scraping https://unity3d.com/showcase/case-stories/hand-of-fate ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/defiantdevelopment/?fref=mentions ...'
b' |MSG| Scraping https://www.thepiratedownload.us/download-hand-fate-2-reloaded/ ...'
Name Captain Forever Remix
Released 2015
Updated NaN
Developer Pixelsaurus Games
Theme Science fiction
Influences NaN
Name: 26, dtype: object
http://duckduckgo.com/html/?q=%22Captain%20Forever%20Remix%22%20AND%20Pixelsaurus%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://captainforeverremix.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/298560/Captain_Forever_Remix/ ...'
b' |MSG| Scraping http://small-games.info/?go=game&c=3&i=18414 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pixelsaurusgames.itch.io/captain-forever-remix ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/captain-forever-remix-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/captainforeverremix/posts ...'
b' |MSG| Scraping https://gamesmojo.com/games/action/captain-forever-remix ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/298560/discussions/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/captain-forever-remix/review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/captain-forever-remix ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamepciso.com/captain-forever-remix-pc-full-iso-download-free/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/captain-forever-remix.html ...'
b' |MSG| Scraping https://taigame.org/en/game/captain-forever-remix ...'
b' |MSG| Found article'
b' |MSG| Scraping https://se7en.ws/captain-forever-remix-review/?lang=en ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=D8wnt4Z2Xls ...'
b' |MSG| Scraping https://pax.gamepedia.com/Captain_Forever_Remix ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gameslikefinder.com/captain-forever-remix/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.skidrowreloaded.com/captain-forever-remix/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pcgamingwiki.com/wiki/Captain_Forever_Remix ...'
b' |MSG| Found article'
Name Runestone Keeper
Released 2015
Updated NaN
Developer Blackfire Games
Theme Fantasy
Influences NaN
Name: 27, dtype: object
http://duckduckgo.com/html/?q=%22Runestone%20Keeper%22%20AND%20Blackfire%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://blackfiregames.itch.io/runestone-keeper ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/339400/Runestone_Keeper/ ...'
b' |MSG| Scraping http://small-games.info/?go=game&c=10&i=17542 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=1TpJz5K8g9M ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.trueachievements.com/n32357/runestone-keeper-review ...'
b' |MSG| Scraping https://www.gamepressure.com/games/runestone-keeper/z94ac1 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://runestonekeeper.wikia.com/wiki/Gameplay_and_Strategies ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/runestone-keeper ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/games/339400/announcements/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/indie/runestone-keeper ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/runestonekeeper/?page_offset=1 ...'
b' |MSG| Scraping http://indiegames.download/games/indie/runestone-keeper ...'
b' |MSG| Found article'
b' |MSG| Scraping http://i-luv-games.com/?p=2135 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.microsoft.com/en-us/p/runestonekeeper/9nn1r85tq39s ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/runestone-keeper.html ...'
b' |MSG| Scraping https://www.runestonekeeper.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamewise.co/games/55587/Runestone-Keeper/Cheats ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.windowscentral.com/runestone-keeper-brings-minesweeper-dungeon-crawling-xbox-one-and-pc ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.ownando.com/br/steam/runestone-keeper ...'
b' |MSG| Found article'
Name Skyshine's Bedlam
Released 2015
Updated NaN
Developer Skyshine Games
Theme Post-apocalyptic
Influences NaN
Name: 28, dtype: object
http://duckduckgo.com/html/?q=%22Skyshine%27s%20Bedlam%22%20AND%20Skyshine%20Games%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.gamespot.com/reviews/skyshines-bedlam-review/1900-6416320/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/367600/Skyshines_BEDLAM/ ...'
b' |MSG| Scraping https://www.gamespot.com/skyshines-bedlam/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metacritic.com/game/pc/skyshines-bedlam ...'
b' |MSG| Scraping http://www.impulsegamer.com/skyshines-bedlam-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamersheroes.com/honest-game-reviews/skyshines-bedlam-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.softpedia.com/reviews/games/pc/skyshine-039-s-bedlam-review-492282.shtml ...'
b' |MSG| Scraping https://techraptor.net/content/bedlam-skyshine-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gog.com/game/skyshines_bedlam ...'
b' |MSG| Scraping https://www.pcgamer.com/skyshines-bedlam-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://codexpcgames.com/678/skyshines-bedlam/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.greenmangaming.com/games/skyshines-bedlam/ ...'
b' |MSG| Scraping http://www.metacritic.com/game/pc/skyshines-bedlam/critic-reviews ...'
b' |MSG| Scraping https://www.amazon.com/Skyshines-BEDLAM-Deluxe-Online-Game/dp/B01FWN3Z92 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://wegotthiscovered.com/gaming/skyshines-bedlam-review/ ...'
b' |MSG| Scraping https://www.commonsensemedia.org/game-reviews/skyshines-bedlam ...'
b' |MSG| Scraping http://bedlam.wikia.com/wiki/File:Skyshine%27s_BEDLAM_-_E3_2015 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.giantbomb.com/skyshines-bedlam/3030-48153/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamebillet.com/skyshines-bedlam ...'
b' |MSG| Found article'
Name Infinite Space III: Sea of Stars
Released 2015
Updated 2016
Developer Rich Carlson, Iikka Keränen
Theme Space science fiction
Influences NaN
Name: 29, dtype: object
b'??WARN?? Search term "Infinite Space III: Sea of Stars" returned nothing'
http://duckduckgo.com/html/?q=%22Infinite%20Space%20III%3A%20Sea%20of%20Stars%22%20AND%20Rich%20Carlson%20OR%20%20Iikka%20Ker%C3%A4nen%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.imdb.com/title/tt1323932/fullcredits ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/WeirdWorldsReturnToInfiniteSpace ...'
b' |MSG| Scraping https://www.facebook.com/infinitespace3 ...'
b' |MSG| Scraping http://doom.wikia.com/wiki/List_of_notable_WADs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://doomwiki.org/wiki/Hacx ...'
b' |MSG| Scraping https://doomwiki.org/wiki/Requiem ...'
b' |MSG| Scraping https://store.steampowered.com/app/698100/Protagon_VR/ ...'
b' |MSG| Scraping http://doom.wikia.com/wiki/Requiem ...'
b' |MSG| Found article'
b' |MSG| Scraping https://onemandoom.blogspot.com/p/index-of-reviews.html ...'
b' |MSG| Found article'
b' |MSG| Scraping http://counterstrike.wikia.com/wiki/Canals ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.quaddicted.com/reviews/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.imdb.com/filmosearch?role=nm0876724&sort=year ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.nexusmods.com/skyrimspecialedition/mods/12244?tab=description ...'
b' |MSG| Found article'
b' |MSG| Scraping http://digital-eel.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://issuu.com/henrico7/docs/fall_program_guide_2018 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thegamecrafter.com/games/infinite-space-explorers1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.kickstarter.com/projects/digital-eel/infinite-space-3-sea-of-stars ...'
b' |MSG| Found article'
Name Darkest Dungeon
Released 2016
Updated NaN
Developer Red Hook Studios
Theme Fantasy
Influences NaN
Name: 30, dtype: object
http://duckduckgo.com/html/?q=%22Darkest%20Dungeon%22%20AND%20Red%20Hook%20Studios%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.darkestdungeon.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/262060/discussions/4/618453594745256209/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gameinformer.com/games/darkest_dungeon/b/pc/archive/2016/01/18/aphotic-atmospheric-and-awesome.aspx ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/Games/comments/6ioo2u/we_are_the_cofounders_of_red_hook_studios/ ...'
b' |MSG| Scraping https://www.pcgamer.com/darkest-dungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://80.lv/articles/red-hook-studios-talks-about-the-creation-of-darkest-dungeon/ ...'
b' |MSG| Scraping https://www.gamepedia.com/news/606-darkest-dungeon-early-access-and-wiki ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.hardcoregamer.com/2016/01/18/review-darkest-dungeon/187837/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.nintendolife.com/reviews/switch-eshop/darkest_dungeon ...'
b' |MSG| Scraping https://fortheloveofgaming.net/2016/10/31/review-darkest-dungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.eurogamer.net/articles/2018-01-17-darkest-dungeon-and-the-lovecrafting-of-crunch ...'
b' |MSG| Found article'
b' |MSG| Scraping https://heavymag.com.au/interview-darkest-dungeon-red-hook-studios/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://arstechnica.com/gaming/2017/06/darkest-dungeon-the-crimson-court-review-a-renewed-thirst-for-blood/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://darkestdungeon.wikia.com/wiki/Red_Hook_Studios,_Inc. ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.inverse.com/article/10464-red-hook-s-darkest-dungeon-is-already-a-game-of-the-year-candidate ...'
b' |MSG| Found article'
b' |MSG| Scraping https://guides.gamepressure.com/darkestdungeon/guide.asp?ID=40509 ...'
b' |MSG| Scraping https://www.nexusmods.com/darkestdungeon/mods/109/? ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2016/01/25/darkest-dungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/DarkestDungeon/posts ...'
Name Enter the Gungeon
Released 2016
Updated NaN
Developer Dodge Roll
Theme Science fiction
Influences NaN
Name: 31, dtype: object
http://duckduckgo.com/html/?q=%22Enter%20the%20Gungeon%22%20AND%20Dodge%20Roll%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://enterthegungeon.gamepedia.com/Dodge_Roll ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gameranx.com/features/id/48447/article/enter-the-gungeon-interview-with-dodge-rolls-dave-crooks-the-past-present-and-future/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamer.com/enter-the-gungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://dodgeroll.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.skidrowreloaded.com/enter-the-gungeon-advanced-gungeons-and-draguns-tinyiso/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=qUopKOXe3VQ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/311690/discussions/1/1711815918578893839/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.reddit.com/r/EnterTheGungeon/ ...'
b' |MSG| Scraping http://www.gamingrespawn.com/enter-gungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://twitter.com/dodgerollgames ...'
b' |MSG| Found article'
b' |MSG| Scraping http://oceanofgames.com/enter-the-gungeon-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.microsoft.com/en-au/p/enter-the-gungeon/9nb65s6lfzrt ...'
b' |MSG| Found article'
b' |MSG| Scraping https://skidrowcracked.com/enter-the-gungeon-advanced-gungeons-and-draguns-tinyiso/ ...'
b' |MSG| Scraping http://gameonreviews.com/game-reviews/259.html ...'
b' |MSG| Scraping https://www.rizonesoft.com/enter-gungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.50gameslike.com/games-like/enter-the-gungeon/ios ...'
b' |MSG| Found article'
b' |MSG| Scraping https://whatoplay.com/ps4/enter-the-gungeon/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.thejimquisition.com/enter-the-gungeon-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://speed-new.com/enter-the-gungeon-full-pc-game ...'
b' |MSG| Found article'
Name FORCED Showdown
Released 2016
Updated NaN
Developer BetaDwarf
Theme Fantasy, science fiction
Influences NaN
Name: 32, dtype: object
b'??WARN?? Search term "FORCED Showdown" returned nothing'
http://duckduckgo.com/html/?q=%22FORCED%20Showdown%22%20AND%20BetaDwarf%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.betadwarf.com/community/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=e0uAI-cusAg ...'
b' |MSG| Scraping http://www.forcedshowdown.com/team/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://forcedshowdown.gamepedia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.metacritic.com/game/pc/forced-showdown ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.gamerevolution.com/review/70134-forced-showdown-review ...'
b' |MSG| Scraping http://www.gamerevolution.com/review/416371-we-happy-few-review-downer-and-out ...'
b' |MSG| Found article'
b' |MSG| Scraping http://oceanofgames.com/forced-showdown-free-download/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://linuxgameconsortium.com/linux-gaming-news/the-incredible-story-of-betadwarf-and-forced-5420/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://forcedthegame.com/story/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/265000/discussions/0/365163537817753926/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.steamgifts.com/discussion/VYsDF/something-to-read-interesting-history-of-indie-dev-betadwarf-makers-of-forced-and-forced-showdown ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.destructoid.com/review-forced-showdown-368410.phtml ...'
b' |MSG| Scraping https://ru-ru.facebook.com/BetaDwarf/posts ...'
b' |MSG| Scraping http://cogconnected.com/review/forced-showdown-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://linuxgamenews.com/post/63208838351/the-incredible-story-of-betadwarf-and-forced ...'
b' |MSG| Scraping https://gamingbolt.com/forced-review ...'
b' |MSG| Scraping http://www.grabthegames.com/review-forced-showdown.html ...'
b' |MSG| Found article'
Name Pixel Cave
Released 2016
Updated NaN
Developer Megabyte
Theme Fantasy
Influences NaN
Name: 33, dtype: object
b'??WARN?? Search term "Pixel Cave" returned nothing'
http://duckduckgo.com/html/?q=%22Pixel%20Cave%22%20AND%20Megabyte%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.cavestory.org/ ...'
b' |MSG| Scraping https://pixel-cave.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.trueachievements.com/n26811/a-pixel-story-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://80.lv/articles/pixels-heroes-interview/ ...'
b' |MSG| Scraping https://everipedia.org/wiki/Isometric_graphics_in_video_games_and_pixel_art/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.retronator.com/ ...'
b' |MSG| Scraping http://www.idownloadblog.com/2018/08/08/google-pixel-3-xl-video-leak/ ...'
b' |MSG| Scraping https://idesigni.co.uk/blog/past-present-future-pixel-art/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://pixelwalker.livejournal.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=P_DifkmhD5E ...'
b' |MSG| Scraping https://www.facebook.com/pixelcavevr/posts ...'
b' |MSG| Scraping https://medium.com/@tumeowilliam/godot-engine-and-pixel-art-a-better-love-story-than-twilight-4c8155ba71cd ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.techradar.com/reviews/google-pixel-2-review/3 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.patreon.com/untiedgames ...'
b' |MSG| Scraping https://itch.io/games/tag-pixel-art/tag-story-rich ...'
b' |MSG| Scraping https://store.steampowered.com/app/837510/Pixel_Game_Maker_MV__MV/ ...'
b' |MSG| Scraping http://ocias.com/pixelart.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.slant.co/topics/6128/~pixel-art-games ...'
b' |MSG| Scraping https://www.reddit.com/r/gamedev/comments/2hdsdi/everything_you_need_to_know_about_pixel_art_60_of/ ...'
b' |MSG| Scraping https://play.google.com/store/apps/details?id=com.globaljayaappa.pixelcave&hl=en_US ...'
b' |MSG| Found article'
Name Dragon's Lunch
Released 2017
Updated NaN
Developer Abbot Computing Ltd
Theme Fantasy
Influences NaN
Name: 34, dtype: object
b'??WARN?? Search term "Dragon\'s Lunch" returned nothing'
http://duckduckgo.com/html/?q=%22Dragon%27s%20Lunch%22%20AND%20Abbot%20Computing%20Ltd%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://www.moddb.com/games/dragons-lunch/downloads/dragons-lunch ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.moddb.com/games/dragons-lunch ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/games/dragons-lunch ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.indiedb.com/company/abbot-computing-ltd ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.revolvy.com/topic/List%20of%20roguelikes ...'
b' |MSG| Found article'
b' |MSG| Scraping https://small-games.info/?go=game&c=79&i=23923 ...'
b' |MSG| Found article'
Name Dead Cells
Released 2017
Updated NaN
Developer Motion Twin
Theme Fantasy
Influences NaN
Name: 35, dtype: object
http://duckduckgo.com/html/?q=%22Dead%20Cells%22%20AND%20Motion%20Twin%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://motion-twin.com/game/81/dead-cells ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamecrate.com/interview-motion-twin-talks-about-developing-dead-cells/18378 ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fandom.wikia.com/articles/dead-cells-review-carefully-crafted-combat-meets-random-levels ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/588650/Dead_Cells/ ...'
b' |MSG| Scraping https://deadcells.gamepedia.com/Motion_Twin ...'
b' |MSG| Found article'
b' |MSG| Scraping https://motiontwin.itch.io/dead-cells ...'
b' |MSG| Found article'
b' |MSG| Scraping https://screenrant.com/dead-cells-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/tag/dead-cells/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://maddownload.com/games/action/dead-cells/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://steamcommunity.com/app/588650/discussions/0/2828702372993962318/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamejolt.com/games/dead-cells/132079 ...'
b' |MSG| Scraping https://venturebeat.com/2018/01/25/motion-twins-dead-cells-will-slash-and-jump-from-pcs-to-consoles-later-this-year/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.spritesanddice.com/2017/05/review-dead-cells ...'
b' |MSG| Scraping http://www.nintendolife.com/news/2018/05/feature_reanimating_the_roguelike_with_dead_cells_developer_motiontwin ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=02G3GUt6Nzo ...'
b' |MSG| Scraping https://www.pcgamesinsider.biz/indie-interview/66988/how-motion-twin-stopped-dead-cells-being-just-another-roguelike-pixel-art-metroidvania-game/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.polygon.com/2017/5/19/15659584/dead-cells-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.microsoft.com/en-au/p/dead-cells/bqscns1t8phq ...'
b' |MSG| Found article'
b' |MSG| Scraping https://dead-cells.com/blog ...'
b' |MSG| Found article'
Name Heat Signature
Released 2017
Updated NaN
Developer Suspicious Developments
Theme Science fiction
Influences NaN
Name: 36, dtype: object
http://duckduckgo.com/html/?q=%22Heat%20Signature%22%20AND%20Suspicious%20Developments%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.pcgamer.com/heat-signature-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pentadact.com/2012-06-08-suspicious-developments-manifesto/ ...'
b' |MSG| Scraping https://store.steampowered.com/developer/suspicious/ ...'
b' |MSG| Scraping http://gamelust.com/review/heat-signature-review/ ...'
b' |MSG| Scraping https://www.gameinformer.com/games/heat_signature/b/pc/archive/2017/09/27/heat-signature-game-informer-review.aspx ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.keengamer.com/Articles/View/17141 ...'
b' |MSG| Scraping https://www.nature.com/articles/s41467-018-05515-8?error=cookies_not_supported&code=eb6cbcf8-8b9a-422f-8cce-416b38002aa1 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamasutra.com/view/news/313474/Road_to_the_IGF_Suspicious_Developments_Heat_Signature.php ...'
b' |MSG| Found article'
b' |MSG| Scraping https://heatsignature.gamepedia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://VseTop.su/games/210-heat-signature.html ...'
b'!!FAIL!! Failed to load https://VseTop.su/games/210-heat-signature.html'
HTTPSConnectionPool(host='vsetop.su', port=443): Max retries exceeded with url: /games/210-heat-signature.html (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')],)",),))
b' |MSG| Scraping http://gamestorrent.co/heat-signature.html ...'
b' |MSG| Scraping https://saveorquit.com/2017/10/07/review-heat-signature/ ...'
b' |MSG| Scraping http://heatsig.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/2017/09/26/heat-signature-review/ ...'
b' |MSG| Scraping https://gamesmojo.com/games/action/heat-signature ...'
b' |MSG| Found article'
b' |MSG| Scraping http://heatsignature.wikia.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/heat-signature/heat-signature-release-date-steam-trading-cards ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.polygon.com/2017/9/22/16350330/heat-signature-review ...'
b' |MSG| Scraping https://waypoint.vice.com/en_us/article/evpvmk/watch-us-steal-cool-spaceships-in-heat-signature ...'
b' |MSG| Found article'
Name FARA
Released 2018
Updated NaN
Developer Brian Roberts
Theme Fantasy
Influences NaN
Name: 37, dtype: object
b'??WARN?? Wikipedia cannot find "FARA_(video_game)"'
http://duckduckgo.com/html/?q=%22FARA%22%20AND%20Brian%20Roberts%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping https://www.gamespot.com/reviews/post-mortem-review/1900-2911836/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://fortune.com/2018/08/10/brainstorm-health-daily-08-10-18/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamedevhistory.blogspot.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://adventuregamers.com/articles/view/17557 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.youtube.com/watch?v=izyW6LEHdMk ...'
b' |MSG| Scraping http://www.gameboomers.com/wtcheats/pcPp/Post_Mortem.htm ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamezebo.com/2009/01/07/post-mortem-review/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://watchersonthewall.com/game-thrones-post-mortem-broken-man/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.facebook.com/brian.roberts310752 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://nighthoodgames.itch.io/mortem ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorming.com/pre-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://lawandorder.wikia.com/wiki/Post-Mortem_Blues ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.bizarrepedia.com/victorian-coffins-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.atlasobscura.com/articles/victorian-post-mortem-photographs ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.skepticink.com/incredulous/2016/06/19/myth-victorian-post-mortem-photography/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ign.com/articles/2003/02/25/post-mortem-review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesparks.com/blog/gdc-and-game-connection-post-mortem/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pagerduty.com/resources/learn/post-mortem-incident-report/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.technocrazed.com/the-most-weird-tradition-of-victorian-era-post-mortem-photography-gallery ...'
b' |MSG| Found article'
Name KeeperRL
Released 2018
Updated NaN
Developer Michal Brzozowski
Theme Fantasy
Influences NaN
Name: 38, dtype: object
b'??WARN?? Search term "KeeperRL" returned nothing'
http://duckduckgo.com/html/?q=%22KeeperRL%22%20AND%20Michal%20Brzozowski%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://keeperrl.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://small-games.info/?go=game&c=13&i=15087 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.rockpapershotgun.com/tag/michal-brzozowski/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://store.steampowered.com/app/329970/KeeperRL/ ...'
b' |MSG| Scraping https://steamcommunity.com/app/329970/discussions/0/1479856439034642642/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://game-mod.ru/game-keeperrl/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://gamesmojo.com/games/rpg/keeperrl ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.thepiratedownload.us/download-keeperrl-alpha-23-download-free/ ...'
b' |MSG| Scraping https://www.steamkiwi.com/article=142609/upcoming-gameplay-changes-part-ii-combat ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.fctables.com/players/michal_brzozowski-284990/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://igritorrent.org/load/igry_2015_goda/keeperrl/21-1-0-1385 ...'
b' |MSG| Scraping http://rustorka.com/forum/viewtopic.php?t=183763 ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.pcgamesn.com/keeperrl/review ...'
b' |MSG| Found article'
b' |MSG| Scraping https://rawg.io/games/keeperrl ...'
b' |MSG| Found article'
b' |MSG| Scraping http://Top-Torrent.ws/game-torrent/strategy-torrent/36136-keeperrl.html ...'
b' |MSG| Found article'
b' |MSG| Scraping https://keeperrl.br.uptodown.com/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.qwant.com/game/keeperrl?l=br ...'
b' |MSG| Found article'
b' |MSG| Scraping http://gamestorrent.co/keeperrl.html ...'
b' |MSG| Scraping https://gamefaqs.gamespot.com/company/122256-michal-brzozowski ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.igdb.com/companies/michal-brzozowski/best ...'
b' |MSG| Found article'
b' |MSG| Written to corpus-roguelike-like.json'
In [222]:
# For Roguelike games, we build a corpus with RogueTemple and DuckDuckGo
corpus = []
games_to_scrape = ["The Tombs"]
for index, roguelike in roguelikes.iterrows():
title = roguelike['Name']
if not isinstance(title, str) or not title in games_to_scrape:
continue
print(roguelike)
text = []
rogue_temple = scrape_mediawiki_url(roguelike['RogueTemple'])
text.append(rogue_temple)
developers = '"' + str(roguelike['Developer']).replace(',', ' OR ') + '"'
links = scrape_duckduckgo(title, developers)
for link in links[:25]:
if 'roguebasin.roguelikedevelopment.org' in link \
or 'roguebasin.com' in link \
or 'wikipedia' in link:
continue
content = scrape(link, title)
if content:
text.append(content)
corpus.append({"title": title, "text": text})
save_json('corpus-addition.tmp.json', corpus)
Name The Tombs
RogueTemple http://roguebasin.roguelikedevelopment.org/ind...
Link http://www.thetombs.com/
Released 2005/04/16
Updated 2005/04/16
Developer Martin Woodard
Theme Fantasy
Influences NaN
Name: 229, dtype: object
http://duckduckgo.com/html/?q=%22The%20Tombs%22%20AND%20%22Martin%20Woodard%22%20AND%20game%20AND%20%28mortem%20OR%20history%20OR%20developer%20OR%20review%29
b' |MSG| Scraping http://time.com/4791258/game-of-thrones-george-r-r-martin-interview/ ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.theverge.com/2018/4/25/17280908/george-r-r-martin-grrm-game-of-thrones-song-of-ice-and-fire ...'
b' |MSG| Found article'
b' |MSG| Scraping https://www.gamesradar.com/the-best-videogame-stories-ever/2/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.digitalspy.com/tv/game-of-thrones/feature/a858055/game-of-thrones-george-rr-martin-fire-and-ice-books-novels/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://ebookscart.com/download-a-game-of-thrones-a-song-of-ice-and-fire-book-1-by-george-r-r-martin-free/ ...'
b' |MSG| Found article'
b' |MSG| Scraping http://www.ebour.com.ar/pdfs/A%20Course%20in%20Game%20Theory.pdf ...'
b' |MSG| Found article'
---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
<ipython-input-222-f70fce14899a> in <module>()
19 if 'roguebasin.roguelikedevelopment.org' in link or 'roguebasin.com' in link or 'wikipedia' in link:
20 continue
---> 21 content = scrape(link, title)
22 if content:
23 text.append(content)
<ipython-input-220-0db3b717f6de> in scrape(url, title)
16 if html and any(word in html.lower() for word in [title, 'rogue', 'procedural', 'generation', 'mortem', 'review', 'history', 'develop', 'idea', 'inspir']):
17 print(__message('Found article'))
---> 18 soup = bs4.BeautifulSoup(response.text, 'lxml')
19 selections = soup.select('body > p') + soup.select('div > p') + soup.select('table td')
20 content = [node.text.strip() for node in selections]
/usr/local/lib/python3.6/site-packages/requests/models.py in text(self)
850 # Fallback to auto-detected encoding.
851 if self.encoding is None:
--> 852 encoding = self.apparent_encoding
853
854 # Decode unicode from given encoding.
/usr/local/lib/python3.6/site-packages/requests/models.py in apparent_encoding(self)
720 def apparent_encoding(self):
721 """The apparent encoding, provided by the chardet library."""
--> 722 return chardet.detect(self.content)['encoding']
723
724 def iter_content(self, chunk_size=1, decode_unicode=False):
/usr/local/lib/python3.6/site-packages/chardet/__init__.py in detect(byte_str)
36 byte_str = bytearray(byte_str)
37 detector = UniversalDetector()
---> 38 detector.feed(byte_str)
39 return detector.close()
/usr/local/lib/python3.6/site-packages/chardet/universaldetector.py in feed(self, byte_str)
209 self._charset_probers.append(Latin1Prober())
210 for prober in self._charset_probers:
--> 211 if prober.feed(byte_str) == ProbingState.FOUND_IT:
212 self.result = {'encoding': prober.charset_name,
213 'confidence': prober.get_confidence(),
/usr/local/lib/python3.6/site-packages/chardet/charsetgroupprober.py in feed(self, byte_str)
69 if not prober.active:
70 continue
---> 71 state = prober.feed(byte_str)
72 if not state:
73 continue
/usr/local/lib/python3.6/site-packages/chardet/sbcharsetprober.py in feed(self, byte_str)
98 if not self._reversed:
99 i = (self._last_order * self.SAMPLE_SIZE) + order
--> 100 model = self._model['precedence_matrix'][i]
101 else: # reverse the order of the letters in the lookup
102 i = (order * self.SAMPLE_SIZE) + self._last_order
KeyboardInterrupt:
In [ ]:
Content source: Spaxe/roguelike-universe
Similar notebooks: